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

14 lines
172 B
Plaintext
Raw Normal View History

/* Test RamBase Directive */
#pragma origin $F200
#pragma rambase $F000
char t[128];
const char s = "String";
strdst(&s);
strcpy(&t);
void strcpy() {}
void strdst() {}