mirror of
https://github.com/mcanlas/6502-opcodes.git
synced 2025-04-06 04:40:45 +00:00
fix ordering/grouping of definitions
This commit is contained in:
parent
90019b6663
commit
81e85a720d
@ -70,9 +70,10 @@ class Easy6502Spec extends AnyFlatSpec with should.Matchers {
|
||||
"snake" should "compile" in {
|
||||
val sysRandom = VolatileDevice[Int]("sysRandom", 0xfe.z)
|
||||
val sysLastKey = VolatileDevice[AsciiValue]("sysLastKey", 0xff.z)
|
||||
val snakeDirection = ReadWriteLocation[Direction]("snakeDirection", 0x02.z)
|
||||
|
||||
val appleLocation = ReadWriteLocation[Int]("appleLocation", 0x00.z)
|
||||
val snakeLength = ReadWriteLocation[Int]("snakeLength", 0x00.z)
|
||||
val snakeDirection = ReadWriteLocation[Direction]("snakeDirection", 0x02.z)
|
||||
val snakeLength = ReadWriteLocation[Int]("snakeLength", 0x03.z)
|
||||
|
||||
val initSnake =
|
||||
sub("initSnake") { implicit a =>
|
||||
|
Loading…
x
Reference in New Issue
Block a user