1
0
mirror of https://github.com/dschmenk/PLASMA.git synced 2026-01-22 18:15:59 +00:00

Timer divisor measured on actual //c

This commit is contained in:
David Schmenk
2026-01-03 14:56:37 -08:00
parent a9befc3b37
commit 51a33d5750
2 changed files with 6 additions and 6 deletions

Binary file not shown.

View File

@@ -388,12 +388,12 @@ repeat
if solved
puts("Solved!\n")
fin
puts("Seed = "); puti(seed); putln
puts("Moves = "); puti(moveCnt); putln
puts("Tics = "); puti32(@tics); putln
load32(@tics); divi16(1104); store32(@tics)
puts("Seconds = "); puti32(@tics); putln
puts("Play again? (Y/N):"))
puts("Seed = "); puti(seed); putln
puts("Moves = "); puti(moveCnt); putln
puts("Timer = "); puti32(@tics)
load32(@tics); divi16(1085); store32(@tics)
puts(" ("); puti32(@tics); puts(" secs)\n")
puts("Play again? (Y/N):")
until toupper(conio:getkey()) == 'N'
conio:textmode(0)
done