6502-opcodes/src/main/scala/com/htmlism/mos6502/dsl/EnumAsm.scala
Mark Canlas 08960dc94c scala3
2022-02-14 18:11:45 -05:00

22 lines
326 B
Scala

package com.htmlism.mos6502.dsl
import cats.data.NonEmptyList
trait EnumAsm[A]:
def comment: String
/**
* An ordered list of every value in this enumeration
*/
def all: NonEmptyList[A]
/**
* ASM-safe label
*/
def label(x: A): String
/**
* Comment string
*/
def comment(x: A): String