6502-opcodes/firepower-core/src/main/scala/com/htmlism/firepower/core/Encoded.scala
2022-12-04 18:36:11 -05:00

13 lines
197 B
Scala

package com.htmlism.firepower.core
object Encoded:
trait Byte[A]:
def int(x: A): Int
object Byte:
given Encoded.Byte[Int] with
def int(x: Int): Int =
x
trait Word[A]