6502-opcodes/src/main/scala/com/htmlism/mos6502/dsl/EnumAsm.scala

22 lines
326 B
Scala
Raw Normal View History

2020-08-15 21:04:16 +00:00
package com.htmlism.mos6502.dsl
import cats.data.NonEmptyList
2022-02-14 23:11:45 +00:00
trait EnumAsm[A]:
2020-08-15 21:04:16 +00:00
def comment: String
2020-08-15 21:19:36 +00:00
/**
* An ordered list of every value in this enumeration
*/
def all: NonEmptyList[A]
2020-08-15 21:10:37 +00:00
/**
2020-08-15 21:19:36 +00:00
* ASM-safe label
*/
2020-08-15 21:10:37 +00:00
def label(x: A): String
/**
2020-08-15 21:19:36 +00:00
* Comment string
*/
2020-08-15 21:10:37 +00:00
def comment(x: A): String