mirror of
https://github.com/AppleWin/AppleWin.git
synced 2024-11-15 09:05:39 +00:00
36e318e344
. It's an Apple II plus clone. . The 48K bank-switched Rom is controlled with AN0 and AN1. . The character generation video Rom has two full character sets: English and German (F10 to switch). NB. At the prompt, "TEST" runs the ROM self-test.
16 lines
575 B
C
16 lines
575 B
C
#pragma once
|
|
|
|
typedef unsigned char (*csbits_t)[256][8];
|
|
|
|
extern unsigned char csbits_enhanced2e[2][256][8]; // Enhanced //e (2732 4K video ROM)
|
|
extern unsigned char csbits_a2[1][256][8]; // ][ and ][+
|
|
extern unsigned char csbits_a2j[2][256][8]; // ][J-Plus
|
|
extern unsigned char csbits_pravets82[1][256][8]; // Pravets 82
|
|
extern unsigned char csbits_pravets8M[1][256][8]; // Pravets 8M
|
|
extern unsigned char csbits_pravets8C[2][256][8]; // Pravets 8A & 8C
|
|
extern unsigned char csbits_base64a[2][256][8]; // Base64A
|
|
|
|
|
|
void make_csbits(void);
|
|
csbits_t Get2e_csbits(void);
|