OSDN Git Service

ed4352fdd51bc62b951cf6dbcf52b40142d1fa55
[csp-qt/common_source_project-fm7.git] / source / src / vm / pc100 / pc100.cpp
1 /*
2         NEC PC-100 Emulator 'ePC-100'
3
4         Author : Takeda.Toshiya
5         Date   : 2008.07.12 -
6
7         [ virtual machine ]
8 */
9
10 #include "pc100.h"
11 #include "../../emu.h"
12 #include "../device.h"
13 #include "../event.h"
14
15 #include "../and.h"
16 #include "../beep.h"
17 #include "../disk.h"
18 #include "../i8251.h"
19 #include "../i8255.h"
20 #include "../i8259.h"
21 #include "../i286.h"
22 #include "../io.h"
23 #include "../memory.h"
24 #include "../msm58321.h"
25 #include "../noise.h"
26 #include "../pcm1bit.h"
27 #include "../upd765a.h"
28
29 #ifdef USE_DEBUGGER
30 #include "../debugger.h"
31 #endif
32
33 #include "crtc.h"
34 #include "ioctrl.h"
35 #include "kanji.h"
36
37 // ----------------------------------------------------------------------------
38 // initialize
39 // ----------------------------------------------------------------------------
40
41 VM::VM(EMU* parent_emu) : VM_TEMPLATE(parent_emu)
42 {
43         // create devices
44         first_device = last_device = NULL;
45         dummy = new DEVICE(this, emu);  // must be 1st device
46         event = new EVENT(this, emu);   // must be 2nd device
47         
48         and_drq = new AND(this, emu);
49         beep = new BEEP(this, emu);
50         sio = new I8251(this, emu);
51         pio0 = new I8255(this, emu);
52         pio0->set_device_name(_T("8255 PIO (RTC)"));
53         pio1 = new I8255(this, emu);
54         pio1->set_device_name(_T("8255 PIO (CRTC)"));
55         pic = new I8259(this, emu);
56         cpu = new I286(this, emu);
57         io = new IO(this, emu);
58         memory = new MEMORY(this, emu);
59         rtc = new MSM58321(this, emu);
60         pcm = new PCM1BIT(this, emu);
61         fdc = new UPD765A(this, emu);
62         fdc->set_context_noise_seek(new NOISE(this, emu));
63         fdc->set_context_noise_head_down(new NOISE(this, emu));
64         fdc->set_context_noise_head_up(new NOISE(this, emu));
65         
66         crtc = new CRTC(this, emu);
67         ioctrl = new IOCTRL(this, emu);
68         kanji = new KANJI(this, emu);
69         
70         // set contexts
71         event->set_context_cpu(cpu);
72         event->set_context_sound(beep);
73         event->set_context_sound(pcm);
74         event->set_context_sound(fdc->get_context_noise_seek());
75         event->set_context_sound(fdc->get_context_noise_head_down());
76         event->set_context_sound(fdc->get_context_noise_head_up());
77         
78         and_drq->set_context_out(cpu, SIG_CPU_NMI, 1);
79         and_drq->set_mask(SIG_AND_BIT_0 | SIG_AND_BIT_1);
80         sio->set_context_rxrdy(pic, SIG_I8259_IR1, 1);
81         pio0->set_context_port_a(rtc, SIG_MSM58321_READ, 1, 0);
82         pio0->set_context_port_a(rtc, SIG_MSM58321_WRITE, 2, 0);
83         pio0->set_context_port_a(rtc, SIG_MSM58321_ADDR_WRITE, 4, 0);
84         pio0->set_context_port_c(rtc, SIG_MSM58321_DATA, 0x0f, 0);
85         pio1->set_context_port_a(crtc, SIG_CRTC_BITMASK_LOW, 0xff, 0);
86         pio1->set_context_port_b(crtc, SIG_CRTC_BITMASK_HIGH, 0xff, 0);
87         pio1->set_context_port_c(crtc, SIG_CRTC_VRAM_PLANE, 0x3f, 0);
88         pio1->set_context_port_c(and_drq, SIG_AND_BIT_0, 0x80, 0);
89         pio1->set_context_port_c(ioctrl, SIG_IOCTRL_RESET, 0x40, 0);
90         pic->set_context_cpu(cpu);
91         rtc->set_context_data(pio0, SIG_I8255_PORT_C, 0x0f, 0);
92         rtc->set_context_busy(pio0, SIG_I8255_PORT_C, 0x10);
93         fdc->set_context_irq(cpu, SIG_CPU_NMI, 1);
94         fdc->set_context_drq(and_drq, SIG_AND_BIT_1, 1);
95         
96         crtc->set_context_pic(pic);
97         ioctrl->set_context_pic(pic);
98         ioctrl->set_context_fdc(fdc);
99         ioctrl->set_context_beep(beep);
100         ioctrl->set_context_pcm(pcm);
101         
102         // cpu bus
103         cpu->set_context_mem(memory);
104         cpu->set_context_io(io);
105         cpu->set_context_intr(pic);
106 #ifdef USE_DEBUGGER
107         cpu->set_context_debugger(new DEBUGGER(this, emu));
108 #endif
109         
110         // memory bus
111         memset(ram, 0, sizeof(ram));
112         memset(ipl, 0xff, sizeof(ipl));
113         
114         memory->read_bios(_T("IPL.ROM"), ipl, sizeof(ipl));
115         
116         memory->set_memory_rw(0x00000, 0xbffff, ram);
117         memory->set_memory_mapped_io_rw(0xc0000, 0xdffff, crtc);
118         memory->set_memory_r(0xf8000, 0xfffff, ipl);
119         
120         // i/o bus
121         io->set_iomap_alias_rw(0x00, pic, 0);
122         io->set_iomap_alias_rw(0x02, pic, 1);
123 //      io->set_iomap_alias_rw(0x04, dma, 0);
124 //      io->set_iomap_alias_rw(0x06, dma, 1);
125         io->set_iomap_alias_r(0x08, fdc, 0);
126         io->set_iomap_alias_rw(0x0a, fdc, 1);
127         io->set_iomap_alias_rw(0x10, pio0, 0);
128         io->set_iomap_alias_rw(0x12, pio0, 1);
129         io->set_iomap_alias_rw(0x14, pio0, 2);
130         io->set_iomap_alias_rw(0x16, pio0, 3);
131         io->set_iomap_alias_rw(0x18, pio1, 0);
132         io->set_iomap_alias_rw(0x1a, pio1, 1);
133         io->set_iomap_alias_rw(0x1c, pio1, 2);
134         io->set_iomap_alias_rw(0x1e, pio1, 3);
135         io->set_iomap_single_r(0x20, ioctrl);
136         io->set_iomap_single_rw(0x22, ioctrl);
137         io->set_iomap_single_w(0x24, ioctrl);
138         io->set_iomap_alias_rw(0x28, sio, 0);
139         io->set_iomap_alias_rw(0x2a, sio, 1);
140         io->set_iomap_single_rw(0x30, crtc);
141         io->set_iomap_single_rw(0x38, crtc);
142         io->set_iomap_single_rw(0x3a, crtc);
143         io->set_iomap_single_rw(0x3c, crtc);
144         io->set_iomap_single_rw(0x3e, crtc);
145         for(int i = 0x40; i < 0x62; i++) {
146                 io->set_iomap_single_rw(i, crtc);
147         }
148         io->set_iomap_single_rw(0x80, kanji);
149         io->set_iomap_single_rw(0x81, kanji);
150         io->set_iomap_single_w(0x84, kanji);
151         io->set_iomap_single_w(0x86, kanji);
152         
153         // initialize all devices
154         for(DEVICE* device = first_device; device; device = device->next_device) {
155                 device->initialize();
156         }
157         decl_state();
158 }
159
160 VM::~VM()
161 {
162         // delete all devices
163         for(DEVICE* device = first_device; device;) {
164                 DEVICE *next_device = device->next_device;
165                 device->release();
166                 delete device;
167                 device = next_device;
168         }
169 }
170
171 DEVICE* VM::get_device(int id)
172 {
173         for(DEVICE* device = first_device; device; device = device->next_device) {
174                 if(device->this_device_id == id) {
175                         return device;
176                 }
177         }
178         return NULL;
179 }
180
181 // ----------------------------------------------------------------------------
182 // drive virtual machine
183 // ----------------------------------------------------------------------------
184
185 void VM::reset()
186 {
187         // reset all devices
188         for(DEVICE* device = first_device; device; device = device->next_device) {
189                 device->reset();
190         }
191         for(int i = 0; i < 4; i++) {
192                 if(config.drive_type) {
193                         fdc->set_drive_type(i, DRIVE_TYPE_2DD);
194                 } else {
195                         fdc->set_drive_type(i, DRIVE_TYPE_2D);
196                 }
197         }
198 }
199
200 void VM::run()
201 {
202         event->drive();
203 }
204
205 // ----------------------------------------------------------------------------
206 // debugger
207 // ----------------------------------------------------------------------------
208
209 #ifdef USE_DEBUGGER
210 DEVICE *VM::get_cpu(int index)
211 {
212         if(index == 0) {
213                 return cpu;
214         }
215         return NULL;
216 }
217 #endif
218
219 // ----------------------------------------------------------------------------
220 // draw screen
221 // ----------------------------------------------------------------------------
222
223 void VM::draw_screen()
224 {
225         crtc->draw_screen();
226 }
227
228 // ----------------------------------------------------------------------------
229 // soud manager
230 // ----------------------------------------------------------------------------
231
232 void VM::initialize_sound(int rate, int samples)
233 {
234         // init sound manager
235         event->initialize_sound(rate, samples);
236         
237         // init sound gen
238         beep->initialize_sound(rate, 2400, 8000);
239         pcm->initialize_sound(rate, 8000);
240 }
241
242 uint16_t* VM::create_sound(int* extra_frames)
243 {
244         return event->create_sound(extra_frames);
245 }
246
247 int VM::get_sound_buffer_ptr()
248 {
249         return event->get_sound_buffer_ptr();
250 }
251
252 #ifdef USE_SOUND_VOLUME
253 void VM::set_sound_device_volume(int ch, int decibel_l, int decibel_r)
254 {
255         if(ch == 0) {
256                 beep->set_volume(0, decibel_l, decibel_r);
257         } else if(ch == 1) {
258                 pcm->set_volume(0, decibel_l, decibel_r);
259         } else if(ch == 2) {
260                 fdc->get_context_noise_seek()->set_volume(0, decibel_l, decibel_r);
261                 fdc->get_context_noise_head_down()->set_volume(0, decibel_l, decibel_r);
262                 fdc->get_context_noise_head_up()->set_volume(0, decibel_l, decibel_r);
263         }
264 }
265 #endif
266
267 // ----------------------------------------------------------------------------
268 // notify key
269 // ----------------------------------------------------------------------------
270
271 void VM::key_down(int code, bool repeat)
272 {
273         ioctrl->key_down(code);
274 }
275
276 void VM::key_up(int code)
277 {
278         ioctrl->key_up(code);
279 }
280
281 bool VM::get_caps_locked()
282 {
283         return ioctrl->get_caps_locked();
284 }
285
286 bool VM::get_kana_locked()
287 {
288         return ioctrl->get_kana_locked();
289 }
290
291 // ----------------------------------------------------------------------------
292 // user interface
293 // ----------------------------------------------------------------------------
294
295 void VM::open_floppy_disk(int drv, const _TCHAR* file_path, int bank)
296 {
297         fdc->open_disk(drv, file_path, bank);
298 }
299
300 void VM::close_floppy_disk(int drv)
301 {
302         fdc->close_disk(drv);
303 }
304
305 bool VM::is_floppy_disk_inserted(int drv)
306 {
307         return fdc->is_disk_inserted(drv);
308 }
309
310 void VM::is_floppy_disk_protected(int drv, bool value)
311 {
312         fdc->is_disk_protected(drv, value);
313 }
314
315 bool VM::is_floppy_disk_protected(int drv)
316 {
317         return fdc->is_disk_protected(drv);
318 }
319
320 uint32_t VM::is_floppy_disk_accessed()
321 {
322         return fdc->read_signal(0);
323 }
324
325 bool VM::is_frame_skippable()
326 {
327         return event->is_frame_skippable();
328 }
329
330 void VM::update_config()
331 {
332         for(DEVICE* device = first_device; device; device = device->next_device) {
333                 device->update_config();
334         }
335 }
336
337 #define STATE_VERSION   3
338
339 #include "../../statesub.h"
340 #include "../../qt/gui/csp_logger.h"
341 extern CSP_Logger DLL_PREFIX_I *csp_logger;
342
343 void VM::decl_state(void)
344 {
345         state_entry = new csp_state_utils(STATE_VERSION, 0, (_TCHAR *)(_T("CSP::PC_100_HEAD")), csp_logger);
346         DECL_STATE_ENTRY_1D_ARRAY(ram, sizeof(ram));
347         for(DEVICE* device = first_device; device; device = device->next_device) {
348                 device->decl_state();
349         }
350 }
351
352 void VM::save_state(FILEIO* state_fio)
353 {
354         //state_fio->FputUint32(STATE_VERSION);
355         
356         if(state_entry != NULL) {
357                 state_entry->save_state(state_fio);
358         }
359         for(DEVICE* device = first_device; device; device = device->next_device) {
360                 device->save_state(state_fio);
361         }
362         //state_fio->Fwrite(ram, sizeof(ram), 1);
363 }
364
365 bool VM::load_state(FILEIO* state_fio)
366 {
367         //if(state_fio->FgetUint32() != STATE_VERSION) {
368         //      return false;
369         //}
370         bool mb = false;
371         if(state_entry != NULL) {
372                 mb = state_entry->load_state(state_fio);
373         }
374         if(!mb) {
375                 emu->out_debug_log("INFO: HEADER DATA ERROR");
376                 return false;
377         }
378         for(DEVICE* device = first_device; device; device = device->next_device) {
379                 if(!device->load_state(state_fio)) {
380                         return false;
381                 }
382         }
383         state_fio->Fread(ram, sizeof(ram), 1);
384         return true;
385 }
386