Implemented function calls

This commit is contained in:
2024-06-18 16:42:56 +02:00
parent 086998a0c3
commit 76db8feee3
11 changed files with 114 additions and 62 deletions

View File

@ -7,21 +7,28 @@ func (a *Assembler) MoveRegisterNumber(reg cpu.Register, number uint64) {
a.Instructions = append(a.Instructions, Instruction{
Mnemonic: MOVE,
Data: &RegisterNumber{
Register: reg,
Number: number,
IsPointer: false,
Register: reg,
Number: number,
},
})
}
// MoveRegisterAddress moves an address into the given register.
func (a *Assembler) MoveRegisterAddress(reg cpu.Register, address Address) {
// Label adds a label at the current position.
func (a *Assembler) Label(name string) {
a.Instructions = append(a.Instructions, Instruction{
Mnemonic: MOVE,
Data: &RegisterNumber{
Register: reg,
Number: uint64(address),
IsPointer: true,
Mnemonic: LABEL,
Data: &Label{
Name: name,
},
})
}
// Call calls a function whose position is identified by a label.
func (a *Assembler) Call(name string) {
a.Instructions = append(a.Instructions, Instruction{
Mnemonic: CALL,
Data: &Label{
Name: name,
},
})
}