Added define operator
This commit is contained in:
@ -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{
|
||||
|
Reference in New Issue
Block a user