Remove unused grid file; resolve crash condition

This commit is contained in:
Peter Evans 2018-04-15 23:31:29 -05:00
parent b06c00a547
commit c82c1828b0
2 changed files with 2 additions and 11 deletions

View File

@ -1,11 +0,0 @@
/*
* apple2.grid.c
*
* Each of the display modes in the Apple II work off of a grid, but the
* grids are generally interleaved, so there's no simple formula to
* follow.
*
* In here we define tables which map addresses to rows or columns
* within a grid, and some functions to pull that information from those
* tables.
*/

View File

@ -11,12 +11,14 @@ void
setup()
{
mach = apple2_create(700, 480);
vm_di_set(VM_MACHINE, mach);
}
void
teardown()
{
apple2_free(mach);
vm_di_set(VM_MACHINE, NULL);
}
TestSuite(apple2, .init = setup, .fini = teardown);