summaryrefslogtreecommitdiffstats
path: root/src/common.h
diff options
context:
space:
mode:
authorBad Diode <bd@badd10de.dev>2021-05-02 09:42:21 +0200
committerBad Diode <bd@badd10de.dev>2021-05-02 09:42:21 +0200
commit01e6349dfb76abaf9d87d94369b17c14b678e416 (patch)
tree8bd593c54cceab63cbb650647a982b4e596cc939 /src/common.h
parent9c00fb0f37c20d61343bbfe9163530d458251545 (diff)
downloadgba-experiments-01e6349dfb76abaf9d87d94369b17c14b678e416.tar.gz
gba-experiments-01e6349dfb76abaf9d87d94369b17c14b678e416.zip
Update sequencer to use timers w/ different bpms
Diffstat (limited to 'src/common.h')
-rw-r--r--src/common.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/common.h b/src/common.h
index 4151d18..ece94cd 100644
--- a/src/common.h
+++ b/src/common.h
@@ -224,6 +224,7 @@ flip_page(void) {
224#define TIMER_CTRL_CASCADE (1 << 2) 224#define TIMER_CTRL_CASCADE (1 << 2)
225#define TIMER_CTRL_IRQ (1 << 6) 225#define TIMER_CTRL_IRQ (1 << 6)
226#define TIMER_CTRL_ENABLE (1 << 7) 226#define TIMER_CTRL_ENABLE (1 << 7)
227#define TIMER_CTRL_DISABLE (0 << 7)
227 228
228// We use timers 2 and 3 to count the number of cycles since the profile_start 229// We use timers 2 and 3 to count the number of cycles since the profile_start
229// functions is called. Don't use if the code we are trying to profile make use 230// functions is called. Don't use if the code we are trying to profile make use