mirror of
https://github.com/RevCurtisP/C02.git
synced 2024-11-17 15:06:29 +00:00
14 lines
172 B
Plaintext
14 lines
172 B
Plaintext
/* Test RamBase Directive */
|
|
|
|
#pragma origin $F200
|
|
#pragma rambase $F000
|
|
|
|
char t[128];
|
|
const char s = "String";
|
|
|
|
strdst(&s);
|
|
strcpy(&t);
|
|
|
|
void strcpy() {}
|
|
void strdst() {}
|