From 7120b60ae778997d0c07a10f7a1e2e1948f0aa9e Mon Sep 17 00:00:00 2001 From: Mark Canlas Date: Wed, 3 Jan 2024 15:43:19 -0500 Subject: [PATCH] add cpu module --- build.sbt | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/build.sbt b/build.sbt index 0bc798e..7b100b6 100644 --- a/build.sbt +++ b/build.sbt @@ -3,7 +3,7 @@ lazy val firepower = .in(file(".")) .withCats .withTesting - .aggregate(nescant, core, demo) + .aggregate(nescant, core, cpu, demo) lazy val nescant = project.withCats.withTesting @@ -13,6 +13,11 @@ lazy val core = .withCats .withTesting +lazy val cpu = + module("cpu") + .settings(description := "CPU emulation suitable for unit testing") + .withTesting + lazy val demo = module("demo") .dependsOn(core)