1
0
mirror of https://github.com/RevCurtisP/C02.git synced 2024-06-08 06:29:32 +00:00
C02/work/rambase.c02

14 lines
172 B
Plaintext
Raw Permalink 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() {}