Added escape sequences

This commit is contained in:
2024-07-31 17:50:31 +02:00
parent cdbfa744b7
commit c8824e699a
12 changed files with 87 additions and 7 deletions

View File

@ -34,7 +34,8 @@ func (f *Function) TokenToRegister(t token.Token, register cpu.Register) error {
return nil
case token.String:
data := t.Bytes(f.File.Bytes)[1 : t.Length-1]
data := t.Bytes(f.File.Bytes)
data = String(data)
label := f.AddBytes(data)
f.RegisterLabel(asm.MOVE, register, label)
return nil