1
0
mirror of https://github.com/pevans/erc-c.git synced 2025-08-03 16:25:57 +00:00

Add inverse font

This commit is contained in:
Peter Evans
2018-01-24 14:26:28 -06:00
parent 4a4fd93d9d
commit 6069ab4d1b
6 changed files with 1650 additions and 287 deletions

View File

@@ -11,6 +11,7 @@ typedef struct {
vm_8bit apple2_sys_rom[APPLE2_SYSROM_SIZE];
vm_8bit apple2_peripheral_rom[APPLE2_PERIPHERAL_SIZE];
vm_8bit apple2_sysfont[APPLE2_SYSFONT_SIZE];
vm_8bit apple2_invfont[APPLE2_SYSFONT_SIZE];
} objstore;
extern bool objstore_ready();
@@ -23,5 +24,6 @@ extern void objstore_clear();
OBJSTORE_DECL(apple2_peripheral_rom);
OBJSTORE_DECL(apple2_sys_rom);
OBJSTORE_DECL(apple2_sysfont);
OBJSTORE_DECL(apple2_invfont);
#endif