mirror of
https://github.com/holub/mame
synced 2025-04-25 09:50:04 +03:00
note
This commit is contained in:
parent
9e322e8b3f
commit
cd3892668f
@ -581,7 +581,18 @@ void hmcs40_cpu_device::execute_run()
|
||||
// handle opcode
|
||||
switch (m_op)
|
||||
{
|
||||
// unknown: lay, ayy, syy, am, anem, alem, bnem, blem, nega
|
||||
// unknown:
|
||||
/*
|
||||
lay 118
|
||||
ayy 058
|
||||
syy 258
|
||||
am 034
|
||||
anem 124/324/024/234
|
||||
alem
|
||||
bnem
|
||||
blem
|
||||
nega 244
|
||||
*/
|
||||
|
||||
case 0x118:
|
||||
op_lay(); // probably lay
|
||||
@ -592,25 +603,21 @@ void hmcs40_cpu_device::execute_run()
|
||||
|
||||
|
||||
case 0x124:
|
||||
op_illegal();
|
||||
//op_alem(); // alem or anem
|
||||
//op_ayy();
|
||||
//op_illegal();
|
||||
op_alem();
|
||||
break;
|
||||
case 0x324:
|
||||
op_illegal();
|
||||
//op_anem(); // "
|
||||
//op_illegal();
|
||||
op_anem();
|
||||
break;
|
||||
|
||||
case 0x024:
|
||||
op_illegal();
|
||||
//op_nega();
|
||||
//op_illegal();
|
||||
op_bnem();
|
||||
break;
|
||||
|
||||
|
||||
|
||||
case 0x234:
|
||||
op_illegal();
|
||||
//op_nega();
|
||||
//op_illegal();
|
||||
op_blem();
|
||||
break;
|
||||
|
||||
|
||||
@ -619,6 +626,9 @@ void hmcs40_cpu_device::execute_run()
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
/* 0x000 */
|
||||
|
||||
case 0x000: case 0x001: case 0x002: case 0x003:
|
||||
|
Loading…
Reference in New Issue
Block a user