Skip to content

Commit bd24a2d

Browse files
committed
fat memory now
1 parent 4d3e75a commit bd24a2d

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

config.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"stackSize": 30,
2+
"stackSize": 32,
33
"memorySize": 256,
44
"hertz": 0,
55
"locations": [

src/main/kotlin/helpers/ConfigStructure.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ package helpers
44
import kotlinx.serialization.Serializable
55

66
@Serializable
7-
data class ConfigStructure(val stackSize: Int, val memorySize: Int, val hertz: Int, val locations: List<Location>)
7+
data class ConfigStructure(val stackSize: Int, val memorySize: Long, val hertz: Int, val locations: List<Location>)
88

99
@Serializable
1010
data class Location(val requirement: String, val path: String)

0 commit comments

Comments
 (0)