modular filesystem driver wip

This commit is contained in:
minjaesong
2022-08-15 00:13:51 +09:00
parent f213dfe165
commit c3efa36a0d
4 changed files with 326 additions and 96 deletions

View File

@@ -97,7 +97,7 @@ class VM(
fun findPeribyType(searchTerm: String): PeripheralEntry? {
for (i in 0..peripheralSlots) {
for (i in 0 until peripheralSlots) {
if (peripheralTable[i].type == searchTerm) return peripheralTable[i]
}
return null