summary refs log tree commit diff
path: root/src/drive.h
diff options
context:
space:
mode:
authorMaxwell Beck <max@rastertail.net>2024-12-30 17:44:29 -0600
committerMaxwell Beck <max@rastertail.net>2024-12-30 17:44:29 -0600
commitd48c0668da0f319b57b1fb47f93843a851d49339 (patch)
tree88c8df53e4bee3667b28f4b2a0d6ca993ee7039e /src/drive.h
parent2a3984933e9b39cd37a136dd2a95645bff0d3774 (diff)
Fix byte ready to CPU overflow flag sync HEAD main
Diffstat (limited to 'src/drive.h')
-rw-r--r--src/drive.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/drive.h b/src/drive.h
index e131c5c..aa72f60 100644
--- a/src/drive.h
+++ b/src/drive.h
@@ -42,6 +42,7 @@ typedef struct drive_s {
 void drive_init(drive_t *drive);
 void drive_step_up(drive_t *drive);
 void drive_step_down(drive_t *drive);
-bool drive_cycle(drive_t *drive, uint8_t cycles, bool advance);
+bool drive_advance(drive_t *drive, uint8_t cycles);
+void drive_cycle(drive_t *drive);
 
 #endif
\ No newline at end of file