Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

new tlcs900 variant: TMP94C241 #13220

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions scripts/src/cpu.lua
Original file line number Diff line number Diff line change
Expand Up @@ -2978,6 +2978,8 @@ if CPUS["TLCS900"] then
MAME_DIR .. "src/devices/cpu/tlcs900/tlcs900.h",
MAME_DIR .. "src/devices/cpu/tlcs900/900tbl.hxx",
MAME_DIR .. "src/devices/cpu/tlcs900/900htbl.hxx",
MAME_DIR .. "src/devices/cpu/tlcs900/tmp94c241.cpp",
MAME_DIR .. "src/devices/cpu/tlcs900/tmp94c241.h",
MAME_DIR .. "src/devices/cpu/tlcs900/tmp95c061.cpp",
MAME_DIR .. "src/devices/cpu/tlcs900/tmp95c061.h",
MAME_DIR .. "src/devices/cpu/tlcs900/tmp95c063.cpp",
Expand Down
7 changes: 5 additions & 2 deletions src/devices/cpu/tlcs900/tlcs900.h
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,9 @@ enum tlcs900_inputs
TLCS900_INT6,
TLCS900_INT7,
TLCS900_INT8,
TLCS900_INT9,
TLCS900_INTA,
TLCS900_INTB,
TLCS900_TIO,
TLCS900_NUM_INPUTS
};
Expand Down Expand Up @@ -102,8 +105,8 @@ class tlcs900_device : public cpu_device

/* Internal timers, irqs, etc */
uint32_t m_timer_pre;
uint8_t m_timer[6];
int m_timer_change[4];
uint8_t m_timer[10];
int m_timer_change[8];
bool m_prefetch_clear;
uint8_t m_prefetch_index;
uint8_t m_prefetch[4];
Expand Down
Loading
Loading