URL
https://opencores.org/ocsvn/m1_core/m1_core/trunk
Subversion Repositories m1_core
[/] [m1_core/] [trunk/] [tests/] [hello.c] - Rev 42
Go to most recent revision | 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; }
Go to most recent revision | Compare with Previous | Blame | View Log