1
0
mirror of https://github.com/pevans/erc-c.git synced 2024-06-25 12:29:34 +00:00

Significant rewrites and slightly better understanding

This commit is contained in:
Peter Evans 2018-03-18 00:15:55 -05:00
parent 82906e74f8
commit 2baa2fac75
2 changed files with 628 additions and 590 deletions

View File

@ -103,12 +103,10 @@ apple2_draw_lores(apple2 *mach)
void
apple2_draw_hires(apple2 *mach)
{
size_t addr;
vm_screen_prepare(mach->screen);
for (addr = 0x2000; addr < 0x4000; addr++) {
apple2_hires_draw(mach, addr);
for (int row = 0; row < 192; row++) {
apple2_hires_draw(mach, row);
}
}

File diff suppressed because it is too large Load Diff