summaryrefslogtreecommitdiff
path: root/ao.h
diff options
context:
space:
mode:
Diffstat (limited to 'ao.h')
-rw-r--r--ao.h11
1 files changed, 7 insertions, 4 deletions
diff --git a/ao.h b/ao.h
index 7cb0fbfe..8a344cca 100644
--- a/ao.h
+++ b/ao.h
@@ -29,7 +29,7 @@
/* Stack runs from above the allocated __data space to 0xfe, which avoids
* writing to 0xff as that triggers the stack overflow indicator
*/
-#define AO_STACK_START 0x28
+#define AO_STACK_START 0x4b
#define AO_STACK_END 0xfe
#define AO_STACK_SIZE (AO_STACK_END - AO_STACK_START + 1)
@@ -42,9 +42,6 @@ struct ao_task {
#define AO_NUM_TASKS 10 /* maximum number of tasks */
-#define ao_interrupt_disable() (EA = 0)
-#define ao_interrupt_enable() (EA = 1)
-
/*
ao_task.c
*/
@@ -254,4 +251,10 @@ ao_usb_isr(void) interrupt 6;
void
ao_usb_init(void);
+/*
+ * ao_cmd.c
+ */
+void
+ao_cmd_init(void);
+
#endif /* _AO_H_ */