comparison modules/x86.tp @ 359:023c29e1f595

Remove extraneous and from x86 module
author Michael Pavone <pavone@retrodev.com>
date Fri, 17 Apr 2015 17:52:22 -0700
parents f237d0cae58b
children 06dceff348ea
comparison
equal deleted inserted replaced
358:27477c8c2823 359:023c29e1f595
128 } 128 }
129 } 129 }
130 130
131 mod_rm:withTail <- :register regmem :end { 131 mod_rm:withTail <- :register regmem :end {
132 list <- regmem rm: end 132 list <- regmem rm: end
133 (list value) or ( lshift: (register reg) and 7u8 by: 3u8) | (list tail) 133 (list value) or ( lshift: (register reg) by: 3u8) | (list tail)
134 } 134 }
135 135
136 mod_rm <- :reg rm { 136 mod_rm <- :reg rm {
137 mod_rm: reg rm withTail: [] 137 mod_rm: reg rm withTail: []
138 } 138 }