Implemented instruction lists

This commit is contained in:
2023-10-21 17:46:20 +02:00
parent 4967719902
commit a54c62f6e0
12 changed files with 165 additions and 23 deletions

View File

@ -4,7 +4,8 @@ import (
"io"
)
func MoveRegNum32(w io.ByteWriter, register byte, number uint32) {
// MoveRegNum32 moves a 32 bit integer into the given register.
func MoveRegNum32(w io.ByteWriter, register uint8, number uint32) {
w.WriteByte(0xb8 + register)
AppendUint32(w, number)
}