1
0
mirror of https://github.com/lefticus/6502-cpp.git synced 2026-04-19 20:16:32 +00:00

Add some docs and test and cmake support

This commit is contained in:
Jason Turner
2016-07-07 15:48:27 -06:00
parent 8a0b8a107d
commit 87f1962f2b
5 changed files with 31 additions and 3 deletions
+7
View File
@@ -0,0 +1,7 @@
main:
.LFB0:
.cfi_startproc
movb $1, 53280
xorl %eax, %eax
ret
+4
View File
@@ -0,0 +1,4 @@
int main()
{
*((char *)0xd020) = 0x01; // set the border color to white on a c64
}