diff options
author | 2016-04-08 12:17:54 +0200 | |
---|---|---|
committer | 2016-04-08 12:18:13 +0200 | |
commit | 75673f2b9fdeb58bf9767149669cf5781af19cfa (patch) | |
tree | 0a1a661e8a7703279ca9de04774c8d5923f5f06a /src/devices/cpu/sm510/sm500op.cpp | |
parent | 8022a8285ea87d03652ff8f09d57830a40c2647c (diff) |
sm500 opcode handler placeholders
Diffstat (limited to 'src/devices/cpu/sm510/sm500op.cpp')
-rw-r--r-- | src/devices/cpu/sm510/sm500op.cpp | 77 |
1 files changed, 77 insertions, 0 deletions
diff --git a/src/devices/cpu/sm510/sm500op.cpp b/src/devices/cpu/sm510/sm500op.cpp index 038e0b09c37..15d789f7c35 100644 --- a/src/devices/cpu/sm510/sm500op.cpp +++ b/src/devices/cpu/sm510/sm500op.cpp @@ -4,3 +4,80 @@ // SM500 opcode handlers #include "sm500.h" + + +// instruction set + +// RAM address instructions + + +// ROM address instructions + +void sm500_device::op_comcb() +{ +} + +void sm500_device::op_ssr() +{ +} + +void sm500_device::op_trs() +{ +} + + +// Arithmetic instructions + + +// Data transfer instructions + +void sm500_device::op_pdtw() +{ +} + +void sm500_device::op_tw() +{ +} + +void sm500_device::op_dtw() +{ +} + + +// I/O instructions + +void sm500_device::op_ats() +{ +} + +void sm500_device::op_exksa() +{ +} + +void sm500_device::op_exkfa() +{ +} + + +// Divider manipulation instructions + + +// Bit manipulation instructions + +void sm500_device::op_rmf() +{ +} + +void sm500_device::op_smf() +{ +} + +void sm500_device::op_comcn() +{ +} + +// Test instructions + +void sm500_device::op_ta() +{ +} |