1
0
mirror of https://github.com/RevCurtisP/C02.git synced 2024-10-02 01:54:44 +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() {}