added unfinished code to instructions

This commit is contained in:
2026-04-06 13:02:12 -06:00
parent 4e1a601175
commit 6f8a9d80f2
2 changed files with 18 additions and 18 deletions
+4 -4
View File
@@ -63,13 +63,13 @@ namespace spider {
fetchOperDst();
switch(_size){
case 0b00: //byte
_dst->_u8 = 1;
_dst->_u8 = _dst != 0;
case 0b01: //short
_dst->_u16 = 1;
_dst->_u16 = _dst != 0;
case 0b10: //int
_dst->_u32 = 1;
_dst->_u32 = _dst != 0;
case 0b11: //long
_dst->_u64 = 1;
_dst->_u64 = _dst != 0;
}
(this->*_post)();
}