Reworking of the assembly
[uccvend-snackrom.git] / ROM2 / vend.h
1 #ifndef _VEND_H_
2 #define _VEND_H_
3
4 #include "ports.h"
5 #include "types.h"
6 #include "asm.h"
7
8 /* addresses of these set at link time
9  * to add more addresses, define them here with buffered_addr_h, in helpers.c 
10  * with buffered_addr, and also in LDFLAGS in the Makefile
11  */
12 #define buffered_addr(a) \
13         extern volatile u8* _##a;          \
14         u8 a; \
15         extern inline void set_##a(u8 b) { a = *_##a = b; } \
16         extern inline void bset_##a(const u8 m) { bset(&a, m); *_##a = a; } \
17         extern inline void bclr_##a(const u8 m) { bclr(&a, m); *_##a = a; }
18
19 buffered_addr(switch_input);
20 buffered_addr(misc_input);
21 buffered_addr(home_sensors);
22 buffered_addr(changer_output);
23 buffered_addr(misc_output);
24
25 extern inline void spi_enable()  { bset((void*)&_io_ports[M6811_SPCR], M6811_SPE); }
26 extern inline void spi_disable() { bclr((void*)&_io_ports[M6811_SPCR], M6811_SPE); }
27
28 /******* from helpers.c *******/
29 void delay(u16 ms);
30
31 /******** Some meaningful bits ******/
32 #define PORTA_DISP_RESET    0x80 /* active low */
33 #define PORTD_KEYPAD_ROW    0x20 /* clear for row 0, set for row 1 */
34
35 /* Address 3800 bits */
36 #define A3800_DISPLAY_WRITE  0x04
37
38 /******* from main.c *******/
39 int __attribute__((noreturn)) main (void);
40
41 #endif /* _VEND_H_ */

UCC git Repository :: git.ucc.asn.au