diff options
| author | 2022-01-07 12:07:58 -0800 | |
|---|---|---|
| committer | 2022-01-07 15:07:58 -0500 | |
| commit | c21bea828d7253fc2b0bf671937a09f123737b9a (patch) | |
| tree | 54c79ba393dbf4fe0b0be13a512628364cd7e3f9 /scripts | |
| parent | fd736212854673efa8e2bcf2e1b2d3420bcacdb5 (diff) | |
Adding bitmap_printer_device and convert epson_lx810 to use it. (#8863)
Diffstat (limited to 'scripts')
| -rw-r--r-- | scripts/src/machine.lua | 11 | ||||
| -rw-r--r-- | scripts/target/mame/mess.lua | 1 |
2 files changed, 12 insertions, 0 deletions
diff --git a/scripts/src/machine.lua b/scripts/src/machine.lua index 4bb5410edc9..1a4c85a7cc8 100644 --- a/scripts/src/machine.lua +++ b/scripts/src/machine.lua @@ -4911,3 +4911,14 @@ if (MACHINES["GLUKRS"]~=null) then MAME_DIR .. "src/devices/machine/glukrs.h", } end + +--------------------------------------------------- +-- +--@src/devices/machine/bitmap_printer.h,MACHINES["BITMAP_PRINTER"] = true +--------------------------------------------------- +if (MACHINES["BITMAP_PRINTER"]~=null) then + files { + MAME_DIR .. "src/devices/machine/bitmap_printer.cpp", + MAME_DIR .. "src/devices/machine/bitmap_printer.h", + } +end
\ No newline at end of file diff --git a/scripts/target/mame/mess.lua b/scripts/target/mame/mess.lua index 07f55663b4a..108774417ea 100644 --- a/scripts/target/mame/mess.lua +++ b/scripts/target/mame/mess.lua @@ -829,6 +829,7 @@ MACHINES["BL_HANDHELDS_MENUCONTROL"] = true MACHINES["NS32081"] = true MACHINES["NS32202"] = true MACHINES["NS32082"] = true +MACHINES["BITMAP_PRINTER"] = true -------------------------------------------------- -- specify available bus cores |
