mirror of
https://github.com/sehugg/8bitworkshop.git
synced 2024-11-23 06:32:11 +00:00
9 lines
145 B
Plaintext
9 lines
145 B
Plaintext
|
|
//#link "acheader.s"
|
|
|
|
#include <string.h>
|
|
|
|
void main() {
|
|
memset((void*)0x4000, 0, 0xe00); // clear screen, avoid vars and stack (1e00-1fff)
|
|
}
|