From 1b18fa1c67e063b8c0d1615cf5ef6864fe3ae60d Mon Sep 17 00:00:00 2001 From: Zane Kaminski Date: Thu, 21 May 2020 19:08:49 -0400 Subject: [PATCH] Removed C100 access from spin(...) --- ram2e.c | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/ram2e.c b/ram2e.c index 02a8757..d52304a 100644 --- a/ram2e.c +++ b/ram2e.c @@ -115,43 +115,31 @@ static void spin(uint8_t x, uint8_t y) { int j; for (j = 0; j < spin_small; j++) { __asm__("lda $C000"); - __asm__("lda $C100"); gotoxy(x, y); __asm__("lda $C000"); - __asm__("lda $C100"); cputs("-"); __asm__("lda $C000"); - __asm__("lda $C100"); } for (j = 0; j < spin_small; j++) { __asm__("lda $C000"); - __asm__("lda $C100"); gotoxy(x, y); __asm__("lda $C000"); - __asm__("lda $C100"); cputs("\\"); __asm__("lda $C000"); - __asm__("lda $C100"); } for (j = 0; j < spin_small; j++) { __asm__("lda $C000"); - __asm__("lda $C100"); gotoxy(x, y); __asm__("lda $C000"); - __asm__("lda $C100"); cputs("|"); __asm__("lda $C000"); - __asm__("lda $C100"); } for (j = 0; j < spin_small; j++) { __asm__("lda $C000"); - __asm__("lda $C100"); gotoxy(x, y); __asm__("lda $C000"); - __asm__("lda $C100"); cputs("/"); __asm__("lda $C000"); - __asm__("lda $C100"); } } }