mirror of
https://github.com/AppleWin/AppleWin.git
synced 2025-01-07 07:29:20 +00:00
dd2914a38e
. Added II-JPlus rom & video rom . Added new apple2jp model . Fixed support for AN3 for II/II+ models (nothing to do with J-Plus support)
14 lines
513 B
C
14 lines
513 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
|
|
|
|
void make_csbits(void);
|
|
csbits_t Get2e_csbits(void);
|