lc7582: rename file to lc7580

This commit is contained in:
hap 2024-02-19 13:49:04 +01:00
parent f6d4240626
commit a5e4482ebf
5 changed files with 10 additions and 10 deletions

View File

@ -619,13 +619,13 @@ end
-------------------------------------------------- --------------------------------------------------
-- --
--@src/devices/video/lc7582.h,VIDEOS["LC7582"] = true --@src/devices/video/lc7580.h,VIDEOS["LC7580"] = true
-------------------------------------------------- --------------------------------------------------
if (VIDEOS["LC7582"]~=null) then if (VIDEOS["LC7580"]~=null) then
files { files {
MAME_DIR .. "src/devices/video/lc7582.cpp", MAME_DIR .. "src/devices/video/lc7580.cpp",
MAME_DIR .. "src/devices/video/lc7582.h", MAME_DIR .. "src/devices/video/lc7580.h",
} }
end end

View File

@ -14,7 +14,7 @@ TODO:
*/ */
#include "emu.h" #include "emu.h"
#include "video/lc7582.h" #include "video/lc7580.h"
DEFINE_DEVICE_TYPE(LC7580, lc7580_device, "lc7580", "Sanyo LC7580 LCD Driver") DEFINE_DEVICE_TYPE(LC7580, lc7580_device, "lc7580", "Sanyo LC7580 LCD Driver")

View File

@ -6,8 +6,8 @@
*/ */
#ifndef MAME_VIDEO_LC7582_H #ifndef MAME_VIDEO_LC7580_H
#define MAME_VIDEO_LC7582_H #define MAME_VIDEO_LC7580_H
#pragma once #pragma once
@ -77,4 +77,4 @@ public:
DECLARE_DEVICE_TYPE(LC7580, lc7580_device) DECLARE_DEVICE_TYPE(LC7580, lc7580_device)
DECLARE_DEVICE_TYPE(LC7582, lc7582_device) DECLARE_DEVICE_TYPE(LC7582, lc7582_device)
#endif // MAME_VIDEO_LC7582_H #endif // MAME_VIDEO_LC7580_H

View File

@ -27,7 +27,7 @@ Sphinx Galaxy is on similar hardware too, with less leds.
#include "machine/nvram.h" #include "machine/nvram.h"
#include "machine/sensorboard.h" #include "machine/sensorboard.h"
#include "sound/dac.h" #include "sound/dac.h"
#include "video/lc7582.h" #include "video/lc7580.h"
#include "video/pwm.h" #include "video/pwm.h"
#include "speaker.h" #include "speaker.h"

View File

@ -27,7 +27,7 @@ TODO:
#include "cpu/m6800/m6801.h" #include "cpu/m6800/m6801.h"
#include "machine/sensorboard.h" #include "machine/sensorboard.h"
#include "sound/dac.h" #include "sound/dac.h"
#include "video/lc7582.h" #include "video/lc7580.h"
#include "video/pwm.h" #include "video/pwm.h"
#include "screen.h" #include "screen.h"