1
0
mirror of https://github.com/RevCurtisP/C02.git synced 2024-09-27 14:56:27 +00:00
C02/work/rambase.c02
2018-08-16 16:26:44 -04:00

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() {}