Added define operator

This commit is contained in:
2024-06-15 11:36:57 +02:00
parent 65791ea5a1
commit cf696a6f10
9 changed files with 51 additions and 51 deletions

View File

@ -33,7 +33,8 @@ func (f *Function) Compile() {
}
if config.Verbose {
fmt.Println("[line]", line)
ansi.Dim.Print("[ ] ")
fmt.Println(line)
}
err := f.compileInstruction(line)
@ -45,6 +46,19 @@ func (f *Function) Compile() {
}
f.Assembler.Return()
if config.Verbose {
for _, x := range f.Assembler.Instructions {
ansi.Dim.Print("[asm] ")
fmt.Print(x.Mnemonic.String())
if x.Data != nil {
fmt.Print(" " + x.Data.String())
}
fmt.Print("\n")
}
}
}
// compileInstruction compiles a single instruction.
@ -57,12 +71,13 @@ func (f *Function) compileInstruction(line token.List) error {
}
case token.Identifier:
if len(line) >= 2 && line[1].Kind == token.Operator && line[1].Text() == ":=" {
if len(line) >= 2 && line[1].Kind == token.Define {
name := line[0].Text()
value := line[2:]
if config.Verbose {
fmt.Println("[variable]", name, value)
ansi.Dim.Printf("[var] ")
fmt.Println(name, value)
}
f.Variables[name] = &Variable{