URL
https://opencores.org/ocsvn/s1_core/s1_core/trunk
Subversion Repositories s1_core
[/] [s1_core/] [trunk/] [tests/] [hello.c] - Rev 111
Go to most recent revision | Compare with Previous | Blame | View Log
// Sample program that writes two words at a predefined address int main() { unsigned long* address; address = (unsigned long*)0x0000CAC0; (*address) = 0xC1A0C1A0; // First store address = (unsigned long*)0x0000CAC0; (*address) = 0xFABA1210; // Second store return 0; }
Go to most recent revision | Compare with Previous | Blame | View Log