1
0
mirror of https://github.com/sehugg/8bitworkshop.git synced 2024-06-18 10:29:37 +00:00
8bitworkshop/presets/astrocade/skeleton.sdcc

9 lines
145 B
Plaintext
Raw Normal View History

2018-08-29 01:41:51 +00:00
//#link "acheader.s"
#include <string.h>
void main() {
memset((void*)0x4000, 0, 0xe00); // clear screen, avoid vars and stack (1e00-1fff)
}