add label support

This commit is contained in:
Mark Canlas 2020-08-16 02:17:04 -04:00
parent 037d62b002
commit 31d56060c5
4 changed files with 34 additions and 0 deletions

View File

@ -113,6 +113,9 @@ class AssemblyContext {
def push(instruction: Instruction, s: String): Unit =
xs.append(UnaryInstruction(instruction, s.some))
def push(s: String): Unit =
xs.append(Label(s))
def push[A: Operand](instruction: Instruction, x: A): Unit =
xs.append(InstructionWithOperand(instruction, x, None))

View File

@ -53,3 +53,11 @@ case class InstructionWithOperand[A](instruction: Instruction, operand: A, comme
def toTriplet: (String, Option[String], Option[String]) =
(instruction.toString, ev.toAddressLiteral(operand).some, comment)
}
case class Label(s: String) extends Statement {
def toAsm: String =
s + ":"
def toTriplet: (String, Option[String], Option[String]) =
(s, None, None)
}

View File

@ -20,6 +20,10 @@ package object dsl {
.push(asmCtx.toFragment)
}
def label(s: String)(implicit ctx: AssemblyContext): Unit =
ctx
.push(s)
def group[A](s: String)(f: DefinitionGroupContext => A)(implicit ctx: AsmDocumentContext): A = {
val g: DefinitionGroupContext =
new DefinitionGroupContext

View File

@ -126,6 +126,25 @@ class DslSpec extends AnyFlatSpec with should.Matchers {
)
)
}
"label" should "compile" in {
val doc =
asmDoc { implicit ctx =>
asm { implicit a =>
label("init")
}
}
doc shouldEqual AsmDocument(
List(
AsmFragment(
List(
Label("init")
)
)
)
)
}
}
sealed trait Triforce