1
0
mirror of https://github.com/TomHarte/CLK.git synced 2024-09-30 22:56:03 +00:00

Minor correction: round down, not up.

This commit is contained in:
Thomas Harte 2019-09-28 23:49:32 -04:00
parent f14d98452e
commit 929475d31e

View File

@ -100,7 +100,7 @@ class Base {
// (though, in practice, it won't happen until the next
// external slot after this number of cycles after the
// device has requested the read or write).
return 7;
return 6;
}
// Holds the main status register.