Skip to content

Commit a5e09ad

Browse files
committed
Minor build tweaks
1 parent ebfbea2 commit a5e09ad

File tree

8 files changed

+11
-11
lines changed

8 files changed

+11
-11
lines changed

build.sbt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@ name := "ScalaZ80"
22

33
version := "0.1"
44

5-
scalaVersion := "2.12.3"
5+
scalaVersion := "2.12.4"
66

7-
libraryDependencies += "org.scalactic" %% "scalactic" % "3.0.4"
8-
libraryDependencies += "org.scalatest" %% "scalatest" % "3.0.4" % "test"
7+
libraryDependencies += "org.scalactic" %% "scalactic" % "3.0.5"
8+
libraryDependencies += "org.scalatest" %% "scalatest" % "3.0.5" % "test"
99

1010
scalacOptions ++= Seq(
1111
"-feature",

project/build.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
sbt.version=1.0.2
1+
sbt.version=1.1.0

src/main/scala/com/rodent/z80/Z80.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package com.rodent.z80
33
import com.rodent.z80.cpu.{Processor, Registers}
44
import com.rodent.z80.io._
55

6-
// Simpel test machine config and run
6+
// Simple test machine config and run
77
object Z80 extends App {
88
println("Z80!")
99
val memory = new Memory()

src/main/scala/com/rodent/z80/cpu/ALU.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
package com.rodent.z80.cpu
22

3-
import com.rodent.z80.CPU._
3+
import com.rodent.z80.CPUZ._
44
import com.rodent.z80.io.Memory
55

66
import scala.language.implicitConversions

src/main/scala/com/rodent/z80/cpu/OptionalReader.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
package com.rodent.z80.cpu
22

3-
import com.rodent.z80.CPU._
3+
import com.rodent.z80.CPUZ._
44
import com.rodent.z80.io.Memory
55

66
// Process additional memory reads where required

src/main/scala/com/rodent/z80/cpu/OptionalWriter.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
package com.rodent.z80.cpu
22

3-
import com.rodent.z80.CPU._
3+
import com.rodent.z80.CPUZ._
44
import com.rodent.z80.io.Memory
55

66
// Process additional memory writes where required

src/main/scala/com/rodent/z80/cpu/Registers.scala

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
package com.rodent.z80.cpu
22

3-
import com.rodent.z80.CPU.RegNames
4-
import com.rodent.z80.CPU.RegNames.RegName
3+
import com.rodent.z80.CPUZ.RegNames
4+
import com.rodent.z80.CPUZ.RegNames.RegName
55
import com.rodent.z80.func._
66

77
case class Registers(regFile1: BaseRegisters = BaseRegisters(),

src/main/scala/com/rodent/z80/cpu/package.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
package com.rodent.z80
22

3-
package object CPU {
3+
package object CPUZ {
44

55
object RegNames extends Enumeration {
66
type RegName = Value

0 commit comments

Comments
 (0)