mirror of
https://github.com/AppleWin/AppleWin.git
synced 2025-01-22 01:31:25 +00:00
aa59c71847
Added new cmd-line switch: -videorom <file> to replace the video ROM for the Enhanced //e. - Support video ROM sizes of 4K, 8K and 16K (top 8K only). - NB. The rocker switch is set to European video ROM. F10 (for //e or Enhanced //e models) emulates the PAL //e's rocker switch (under the keyboard) to toggle between European or US video ROM. Other: - Fixed debugger's view of the AltCharSet soft-switch (it was showing the opposite state).
14 lines
539 B
C
14 lines
539 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_2e[2][256][8]; // Original //e (no mousetext)
|
|
extern unsigned char csbits_a2[1][256][8]; // ][ and ][+
|
|
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 GetEnhanced2e_csbits(void);
|