mirror of
https://github.com/bradgrantham/apple2a.git
synced 2024-10-31 23:09:39 +00:00
Fix GR after TEXT
This commit is contained in:
parent
23fa9e4e01
commit
d5ce35342e
15
runtime.c
15
runtime.c
@ -10,6 +10,13 @@
|
|||||||
#define MIXED_GRAPHICS_HEIGHT (SCREEN_HEIGHT - MIXED_TEXT_HEIGHT)
|
#define MIXED_GRAPHICS_HEIGHT (SCREEN_HEIGHT - MIXED_TEXT_HEIGHT)
|
||||||
#define CLEAR_CHAR (' ' | 0x80)
|
#define CLEAR_CHAR (' ' | 0x80)
|
||||||
|
|
||||||
|
#define TEXT_OFF_SWITCH ((uint8_t *) 49232U)
|
||||||
|
#define TEXT_ON_SWITCH ((uint8_t *) 49233U)
|
||||||
|
#define MIXED_OFF_SWITCH ((uint8_t *) 49234U)
|
||||||
|
#define MIXED_ON_SWITCH ((uint8_t *) 49235U)
|
||||||
|
#define HIRES_OFF_SWITCH ((uint8_t *) 49238U)
|
||||||
|
#define HIRES_ON_SWITCH ((uint8_t *) 49239U)
|
||||||
|
|
||||||
// Location of cursor in logical screen space.
|
// Location of cursor in logical screen space.
|
||||||
uint16_t g_cursor_x = 0;
|
uint16_t g_cursor_x = 0;
|
||||||
uint16_t g_cursor_y = 0;
|
uint16_t g_cursor_y = 0;
|
||||||
@ -239,11 +246,11 @@ void gr_statement(void) {
|
|||||||
if (!g_gr_mode) {
|
if (!g_gr_mode) {
|
||||||
int i;
|
int i;
|
||||||
// Mixed text and lo-res graphics mode.
|
// Mixed text and lo-res graphics mode.
|
||||||
uint8_t *p = (uint8_t *) 49235U;
|
|
||||||
|
|
||||||
hide_cursor();
|
hide_cursor();
|
||||||
|
|
||||||
*p = 0;
|
*TEXT_OFF_SWITCH = 0;
|
||||||
|
*MIXED_ON_SWITCH = 0;
|
||||||
|
|
||||||
// Clear the graphics area.
|
// Clear the graphics area.
|
||||||
for (i = 0; i < MIXED_GRAPHICS_HEIGHT; i++) {
|
for (i = 0; i < MIXED_GRAPHICS_HEIGHT; i++) {
|
||||||
@ -265,12 +272,10 @@ void gr_statement(void) {
|
|||||||
void text_statement(void) {
|
void text_statement(void) {
|
||||||
if (g_gr_mode) {
|
if (g_gr_mode) {
|
||||||
// Text mode.
|
// Text mode.
|
||||||
uint8_t *p = (uint8_t *) 49233U;
|
*TEXT_ON_SWITCH = 0;
|
||||||
|
|
||||||
hide_cursor();
|
hide_cursor();
|
||||||
|
|
||||||
*p = 0;
|
|
||||||
|
|
||||||
g_gr_mode = 0;
|
g_gr_mode = 0;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user