diff options
author | Michael Pavone <pavone@retrodev.com> | 2015-10-28 19:45:24 -0700 |
---|---|---|
committer | Michael Pavone <pavone@retrodev.com> | 2015-10-28 19:45:24 -0700 |
commit | 0a372b26313bf60fe7afedfcfeea20149f2b4399 (patch) | |
tree | 277a76d229f40f2e5341fdc9d586e3a9e6dcc81d /m68k_core.c | |
parent | 2d194bb1c94eb4eb4901d8cfa14cacb67450d833 (diff) |
Implement TAS
Diffstat (limited to 'm68k_core.c')
-rw-r--r-- | m68k_core.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/m68k_core.c b/m68k_core.c index 09e2662..490fcec 100644 --- a/m68k_core.c +++ b/m68k_core.c @@ -796,10 +796,9 @@ impl_info m68k_impls[] = { //misc RAW_IMPL(M68K_NOP, translate_m68k_nop), RAW_IMPL(M68K_RESET, translate_m68k_reset), + RAW_IMPL(M68K_TAS, translate_m68k_tas), //currently unimplemented - //M68K_NBCD - //M68K_TAS //M68K_TRAPV }; |