OpenCores
URL https://opencores.org/ocsvn/m1_core/m1_core/trunk

Subversion Repositories m1_core

[/] [m1_core/] [trunk/] [tests/] [hello.c] - Rev 54

Compare with Previous | Blame | View Log

// Sample program that writes some words at a predefined address
 
int main() {
  unsigned long* address = (unsigned long*)0xFABA1210;
  (*address) = (unsigned long)'H';
  (*address) = (unsigned long)'e';
  (*address) = (unsigned long)'l';
  (*address) = (unsigned long)'l';
  (*address) = (unsigned long)'o';
  (*address) = (unsigned long)'!';
  (*address) = (unsigned long)'\n';
  return 0;
}
 

Compare with Previous | Blame | View Log

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.