diff options
author | 2019-01-24 15:03:38 +0700 | |
---|---|---|
committer | 2019-01-24 15:03:38 +0700 | |
commit | bb0702d2d5f5ca6c89049ae6285c0701f2a488fb (patch) | |
tree | f2d5b7499960ebae76e947581c8afffc73c92eb8 /scripts/src/cpu.lua | |
parent | 4a367966ab7b11b26d2df5af9f5c4e41ea86ce09 (diff) |
alpha: new cpu, disassembler only
Diffstat (limited to 'scripts/src/cpu.lua')
-rw-r--r-- | scripts/src/cpu.lua | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/scripts/src/cpu.lua b/scripts/src/cpu.lua index 654f5bc41ca..c3218773035 100644 --- a/scripts/src/cpu.lua +++ b/scripts/src/cpu.lua @@ -2780,3 +2780,20 @@ if (_OPTIONS["with-tools"]) then table.insert(disasm_files , MAME_DIR .. "src/devices/cpu/nuon/nuondasm.cpp") table.insert(disasm_files , MAME_DIR .. "src/devices/cpu/nuon/nuondasm.h") end + +-------------------------------------------------- +-- DEC Alpha (EV4/EV5/EV6/EV7) series +--@src/devices/cpu/alpha/alpha.h,CPUS["ALPHA"] = true +-------------------------------------------------- + +if (CPUS["ALPHA"]~=null) then + files { + MAME_DIR .. "src/devices/cpu/alpha/alpha.cpp", + MAME_DIR .. "src/devices/cpu/alpha/alpha.h", + } +end + +if (CPUS["ALPHA"]~=null or _OPTIONS["with-tools"]) then + table.insert(disasm_files , MAME_DIR .. "src/devices/cpu/alpha/alphad.cpp") + table.insert(disasm_files , MAME_DIR .. "src/devices/cpu/alpha/alphad.h") +end |