Implemented bit shifts

This commit is contained in:
2024-07-25 15:47:19 +02:00
parent d1a8f0d66c
commit f0bc5039ee
7 changed files with 101 additions and 2 deletions

View File

@ -184,6 +184,18 @@ func (a Assembler) Finalize() ([]byte, []byte) {
case RETURN:
code = x64.Return(code)
case SHIFTL:
switch operands := x.Data.(type) {
case *RegisterNumber:
code = x64.ShiftLeftNumber(code, operands.Register, byte(operands.Number)&0b111111)
}
case SHIFTRS:
switch operands := x.Data.(type) {
case *RegisterNumber:
code = x64.ShiftRightSignedNumber(code, operands.Register, byte(operands.Number)&0b111111)
}
case STORE:
switch operands := x.Data.(type) {
case *MemoryNumber: