6502-opcodes/firepower-core/src/main/scala/com/htmlism/firepower/core/Subroutine.scala
2022-12-06 17:55:51 -05:00

15 lines
362 B
Scala

package com.htmlism.firepower.core
import cats.syntax.all.*
import com.htmlism.firepower.core.AsmBlock._
case class Subroutine(name: String, intents: List[Intent]):
def call: Intent.Instruction =
Intent.Instruction.One("jsr", name, None)
def attach: NamedCodeBlock =
NamedCodeBlock(name, "this is a named block".some, intents)
object Subroutine