Added label type

This commit is contained in:
2025-03-13 16:57:13 +01:00
parent d96c351b4b
commit c1913d99d0
32 changed files with 102 additions and 63 deletions

View File

@ -2,12 +2,12 @@ package asm
// Comment adds a comment at the current position.
func (a *Assembler) Comment(text string) {
a.Label(COMMENT, text)
a.Label(COMMENT, Label{Name: text, Type: CommentLabel})
}
// DLLCall calls a function in a DLL file.
func (a *Assembler) DLLCall(name string) {
a.Label(DLLCALL, name)
a.Label(DLLCALL, Label{Name: name, Type: ExternLabel})
}
// Return returns back to the caller.