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

23 lines
329 B
Scala
Raw Normal View History

2020-08-15 21:04:16 +00:00
package com.htmlism.mos6502.dsl
import cats.data.NonEmptyList
trait EnumAsm[A] {
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
2020-08-15 21:04:16 +00:00
}