mirror of
https://github.com/garrettsworkshop/GWRAM.SYSTEM.git
synced 2024-11-16 01:08:36 +00:00
Removed C100 access from spin(...)
This commit is contained in:
parent
e81256a746
commit
1b18fa1c67
12
ram2e.c
12
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");
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user