生成条纹

This commit is contained in:
Yourtion
2014-09-10 15:02:32 +08:00
parent 7acac01b40
commit cbdb86f96e

View File

@@ -6,7 +6,7 @@ void HariMain(void)
int i; /* 声明变量i是32位整数 */
for (i = 0xa0000; i <= 0xaffff; i++) {
write_mem8(i, 15); /* MOV BYTE [i],15 */
write_mem8(i, i & 0x0f);
}
for (;;) {