1
0
mirror of https://gitlab.com/camelot/kickc.git synced 2024-10-21 17:24:39 +00:00

Added test file.

This commit is contained in:
jespergravgaard 2020-05-12 00:08:40 +02:00
parent b2045c7874
commit a9551beec2

View File

@ -0,0 +1,12 @@
// Test writing to the Plus/4 TED HSCAN_POS
#pragma target(plus4basic)
#include <plus4.h>
void main() {
#ifdef __PLUS4__
DEFAULT_SCREEN[0] = 'a';
#else
DEFAULT_SCREEN[0] = 'b';
#endif
}