Merge main and resolve conflicts

This commit is contained in:
Diego De Gante Pérez
2026-04-06 13:41:49 -06:00
7 changed files with 250 additions and 57 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)();
}