OSDN Git Service

88ad341c086c3ae248052f6aa704b60ced523e6a
[csp-qt/common_source_project-fm7.git] / source / src / vm / jr800 / jr800.h
1 /*
2         National JR-800 Emulator 'eJR-800'
3
4         Author : Takeda.Toshiya
5         Date   : 2017.03.13-
6
7         [ virtual machine ]
8 */
9
10 #ifndef _JR800_H_
11 #define _JR800_H_
12
13 #define DEVICE_NAME             "National JR-800"
14 #define CONFIG_NAME             "jr800"
15
16 // device informations for virtual machine
17 #define FRAMES_PER_SEC          72
18 #define LINES_PER_FRAME         64
19 #define CPU_CLOCKS              491520
20 #define SCREEN_WIDTH            192
21 #define SCREEN_HEIGHT           64
22 #define HAS_HD6301
23 #define MEMORY_ADDR_MAX         0x10000
24 #define MEMORY_BANK_SIZE        0x100
25
26 // device informations for win32
27 #define WINDOW_MODE_BASE        2
28 #define USE_TAPE                1
29 #define USE_TAPE_BUTTON
30 #define USE_AUTO_KEY            6
31 #define USE_AUTO_KEY_RELEASE    10
32 //#define USE_AUTO_KEY_CAPS
33 #define USE_SOUND_VOLUME        3
34 #define USE_DEBUGGER
35 #define USE_STATE
36 #define USE_CPU_HD6301
37
38 #include "../../common.h"
39 #include "../../fileio.h"
40
41 #ifdef USE_SOUND_VOLUME
42 static const _TCHAR *sound_device_caption[] = {
43         _T("Beep"), _T("CMT (Signal)"), _T("Noise (CMT)"),
44 };
45 #endif
46
47 class csp_state_utils;
48 class EMU;
49 class DEVICE;
50 class EVENT;
51
52 class DATAREC;
53 class HD44102;
54 //class MC6800;
55 class HD6301;
56 class MEMORY;
57 class PCM1BIT;
58
59 class IO;
60
61 class VM
62 {
63 protected:
64         EMU* emu;
65         csp_state_utils *state_entry;
66         
67         // devices
68         EVENT* event;
69         
70         DATAREC* drec;
71         HD44102* lcd[8];
72         //MC6800* cpu;
73         HD6301* cpu;
74         MEMORY* memory;
75         PCM1BIT* pcm;
76         
77         IO* io;
78         
79         uint8_t ram[0x6000];
80         uint8_t rom[0x8000];
81         
82 public:
83         // ----------------------------------------
84         // initialize
85         // ----------------------------------------
86         
87         VM(EMU* parent_emu);
88         ~VM();
89         
90         // ----------------------------------------
91         // for emulation class
92         // ----------------------------------------
93         
94         // drive virtual machine
95         void reset();
96         void run();
97         
98 #ifdef USE_DEBUGGER
99         // debugger
100         DEVICE *get_cpu(int index);
101 #endif
102         
103         // draw screen
104         void draw_screen();
105         
106         // sound generation
107         void initialize_sound(int rate, int samples);
108         uint16_t* create_sound(int* extra_frames);
109         int get_sound_buffer_ptr();
110 #ifdef USE_SOUND_VOLUME
111         void set_sound_device_volume(int ch, int decibel_l, int decibel_r);
112 #endif
113         
114         // user interface
115         void play_tape(int drv, const _TCHAR* file_path);
116         void rec_tape(int drv, const _TCHAR* file_path);
117         void close_tape(int drv);
118         bool is_tape_inserted(int drv);
119         bool is_tape_playing(int drv);
120         bool is_tape_recording(int drv);
121         int get_tape_position(int drv);
122         const _TCHAR* get_tape_message(int drv);
123         void push_play(int drv);
124         void push_stop(int drv);
125         void push_fast_forward(int drv);
126         void push_fast_rewind(int drv);
127         void push_apss_forward(int drv) {}
128         void push_apss_rewind(int drv) {}
129         bool is_frame_skippable();
130         
131         void update_config();
132         void decl_state();
133         void save_state(FILEIO* state_fio);
134         bool load_state(FILEIO* state_fio);
135         
136         // ----------------------------------------
137         // for each device
138         // ----------------------------------------
139         
140         // devices
141         DEVICE* get_device(int id);
142         DEVICE* dummy;
143         DEVICE* first_device;
144         DEVICE* last_device;
145 };
146
147 #endif