summaryrefslogtreecommitdiff
path: root/z80inst.h
diff options
context:
space:
mode:
authorMike Pavone <pavone@retrodev.com>2013-01-21 21:17:52 -0800
committerMike Pavone <pavone@retrodev.com>2013-01-21 21:17:52 -0800
commitcf1bc4272356cfbaa462a9f2bd14740edeced331 (patch)
treea4a93f427847c6c6a9e8bfa6acca95195d2836fe /z80inst.h
parentf0fe9c5acc0cfcb66ab9f95ab0a3a94045ce1950 (diff)
Add support for bit instructions to decoder
Diffstat (limited to 'z80inst.h')
-rw-r--r--z80inst.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/z80inst.h b/z80inst.h
index 0359a9c..c35f0a6 100644
--- a/z80inst.h
+++ b/z80inst.h
@@ -38,7 +38,10 @@ enum {
Z80_RL,
Z80_RRC,
Z80_RR,
- Z80_SL,
+ Z80_SLA,
+ Z80_SRA,
+ Z80_SLL,
+ Z80_SRL,
Z80_RLD,
Z80_RRD,
Z80_BIT,