Skip to content

Commit

Permalink
Fix table in help screen, make time estimates match between program a…
Browse files Browse the repository at this point in the history
…nd help screen.
  • Loading branch information
dillof committed Sep 30, 2020
1 parent be273fc commit 4e0f130
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ Approximate time for backup or restore for 16 MB RAMLink (proportionally shorter

| Method | C64 | SuperCPU V1 | SuperCPU V2 |
|:-:|:-:|:-:|:-:|
| Ultimate with REU | 8 min | 75 s | 55 s |
| SD2IEC | 72 min | 64 min | 60 min |
| Ultimate with REU | 7 min | 72 s | 55 s |
| SD2IEC | 72 min | 60 min | 60 min |

## Using

Expand Down
10 changes: 5 additions & 5 deletions help_screen.s
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ L1:
.byte $40, $40, $40, $40, $40, $40, $40, $6e, $20, $20
scrcode " |Size | C64 |SuperCPU V1|SuperCPU V2| "
scrcode " | 4 MB|2 min| 18 s | 14 s | "
scrcode " |16 MB|8 min| 75 s | 55 s | "
scrcode " |16 MB|7 min| 72 s | 55 s | "
.byte $20, $6d, $40, $40, $40, $40, $40, $71, $40, $40
.byte $40, $40, $40, $71, $40, $40, $40, $40, $40, $40
.byte $40, $40, $40, $40, $40, $71, $40, $40, $40, $40
Expand All @@ -81,14 +81,14 @@ L1:
scrcode " "
scrcode " "
scrcode "Approximate time for backup or restore: "
.byte $20, $70, $40, $40, $40, $40, $40, $40, $72, $40
.byte $20, $70, $40, $40, $40, $40, $40, $72, $40, $40
.byte $40, $40, $40, $40, $72, $40, $40, $40, $40, $40
.byte $40, $40, $40, $40, $40, $40, $72, $40, $40, $40
.byte $40, $40, $40, $40, $40, $40, $40, $40, $6e, $20
scrcode " |Size | C64 |SuperCPU V1|SuperCPU V2| "
scrcode " | 4 MB|20 min| 15 min | 15 min | "
scrcode " |16 MB|75 min| 60 min | 60 min | "
.byte $20, $6d, $40, $40, $40, $40, $40, $40, $71, $40
scrcode " | 4 MB|18 min| 15 min | 15 min | "
scrcode " |16 MB|72 min| 60 min | 60 min | "
.byte $20, $6d, $40, $40, $40, $40, $40, $71, $40, $40
.byte $40, $40, $40, $40, $71, $40, $40, $40, $40, $40
.byte $40, $40, $40, $40, $40, $40, $71, $40, $40, $40
.byte $40, $40, $40, $40, $40, $40, $40, $40, $7d, $20
Expand Down
2 changes: 1 addition & 1 deletion print-approximate-time.c
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
#include "tachyon.h"

void print_approximate_time(uint32_t ms) {
if (ms < 120000) {
if (ms < 110000) {
printf("%lu seconds", (ms + 500) / 1000);
}
else {
Expand Down
2 changes: 1 addition & 1 deletion tachyon-rl.c
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@ int main(void) {


static void print_approximate_time(uint32_t ms) {
if (ms < 120000) {
if (ms < 110000) {
printf("%lu seconds", (ms + 500) / 1000);
}
else {
Expand Down

0 comments on commit 4e0f130

Please sign in to comment.