mirror of
https://github.com/mcanlas/6502-opcodes.git
synced 2024-10-31 21:07:39 +00:00
add cpu module
This commit is contained in:
parent
2cf829d3eb
commit
7120b60ae7
@ -3,7 +3,7 @@ lazy val firepower =
|
|||||||
.in(file("."))
|
.in(file("."))
|
||||||
.withCats
|
.withCats
|
||||||
.withTesting
|
.withTesting
|
||||||
.aggregate(nescant, core, demo)
|
.aggregate(nescant, core, cpu, demo)
|
||||||
|
|
||||||
lazy val nescant =
|
lazy val nescant =
|
||||||
project.withCats.withTesting
|
project.withCats.withTesting
|
||||||
@ -13,6 +13,11 @@ lazy val core =
|
|||||||
.withCats
|
.withCats
|
||||||
.withTesting
|
.withTesting
|
||||||
|
|
||||||
|
lazy val cpu =
|
||||||
|
module("cpu")
|
||||||
|
.settings(description := "CPU emulation suitable for unit testing")
|
||||||
|
.withTesting
|
||||||
|
|
||||||
lazy val demo =
|
lazy val demo =
|
||||||
module("demo")
|
module("demo")
|
||||||
.dependsOn(core)
|
.dependsOn(core)
|
||||||
|
Loading…
Reference in New Issue
Block a user