-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathmem-pcxtat.c
126 lines (99 loc) · 2.14 KB
/
mem-pcxtat.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
//
// EGA / MDA Video read/write routines
//
#include "emu-mem-io.h"
#include "mem-io-pcxtat.h"
#include "rom-bios.h"
#include <stdio.h>
int vid_minx = 32767, vid_miny = 32767;
int vid_maxx = -1, vid_maxy = -1;
#define MIN(a,b) ((a) < (b) ? (a) : (b))
#define MAX(a,b) ((a) > (b) ? (a) : (b))
// return video RAM base address based on video mode
int vid_base (void)
{
return mem_stat [BDA_VIDEO_MODE] == 7? 0xB0000: 0xB8000;
}
void update_dirty_region (int x, int y)
{
vid_minx = MIN(x, vid_minx);
vid_miny = MIN(y, vid_miny);
vid_maxx = MAX(vid_maxx, x);
vid_maxy = MAX(vid_maxy, y);
}
void reset_dirty_region ()
{
vid_minx = vid_miny = 32767;
vid_maxx = vid_maxy = -1;
}
// Memory and video access
byte_t mem_read_byte (addr_t a)
{
byte_t b = mem_read_byte_0 (a);
/*
if (a < 0x40)
{
printf ("\ninfo: reading byte %hhXh from %lXh\n", b, a);
}
*/
return b;
}
word_t mem_read_word (addr_t a)
{
word_t w = mem_read_word_0 (a);
/*
if (a < 0x40)
{
printf ("\ninfo: reading word %hXh from %lXh\n", w, a);
}
*/
return w;
}
void mem_write_byte (addr_t a, byte_t b, byte_t init)
{
// FIXME change VID_PAGE_SIZE to VID_SIZE when pages implemented
if (a >= vid_base() && a < (vid_base() + VID_PAGE_SIZE))
{
byte_t * p = (byte_t *) mem_get_addr (a);
*p = b;
// calculate bounding rectangle
a = (a - vid_base()) / 2;
update_dirty_region(a % VID_COLS, a / VID_COLS);
}
/*
else if (a < 0x40)
{
printf ("\ninfo: writing byte %hhXh into %lXh\n", b, a);
mem_write_byte_0 (a, b, init);
}
*/
else
{
// Main memory
mem_write_byte_0 (a, b, init);
}
}
void mem_write_word (addr_t a, word_t w, byte_t init)
{
// FIXME change VID_PAGE_SIZE to VID_SIZE when pages implemented
if (a >= vid_base() && a < (vid_base() + VID_PAGE_SIZE))
{
word_t * p = (word_t *) mem_get_addr (a);
*p = w;
// calculate bounding rectangle
a = (a - vid_base()) / 2;
update_dirty_region(a % VID_COLS, a / VID_COLS);
}
/*
else if (a < 0x40)
{
printf ("\ninfo: writing word %hXh into %lXh\n", w, a);
mem_write_word_0 (a, w, init);
}
*/
else
{
// Main memory
mem_write_word_0 (a, w, init);
}
}