OSDN Git Service

[VM][Qt][UI][EMU][WIP] Use EMU_TEMPLATE:: instead of EMU:: . Some VMs are not apply...
[csp-qt/common_source_project-fm7.git] / source / src / vm / fmtowns / fontrom_20pix.h
1 /*
2         FUJITSU FM Towns Emulator 'eFMTowns'
3
4         Author : Kyuma.Ohta <whatisthis.sowhat _at_ gmail.com>
5         Date   : 2019.01.09 -
6
7         [fonts]
8 */
9
10 #pragma once
11
12 #include "../device.h"
13
14 namespace FMTOWNS {
15
16 class FONT_ROM_20PIX : public DEVICE
17 {
18 protected:
19         uint8_t font_kanji20[0x40000];
20 public:
21         FONT_ROM_20PIX(VM_TEMPLATE* parent_vm, EMU_TEMPLATE* parent_emu) : DEVICE(parent_vm, parent_emu)
22         {
23                 set_device_name("Font Roms(20pix)");
24         }
25         ~FONT_ROM_20PIX() {}
26
27         void initialize();
28         uint32_t read_data8(uint32_t addr);
29 };
30
31 }
32