reworkings
[uccvend-snackrom.git] / ROM2 / main.c
1 #include "vend.h"
2
3 int main() {
4         /* do stuff */
5         set_msg("UNIVERSITY");
6         delay(1000);
7         set_msg(" COMPUTER ");
8         delay(1000);
9         set_msg("   CLUB   ");
10         delay(1000);
11
12         while(1) {
13         }
14 }
15
16 void _start() {
17         /* Initialize Stuff.  Particularly some memory locations that can only be
18          * written in the first 64 clock cycles upon reset.
19          */
20         display_init();
21         set_bus_expanded();
22         main();
23 }
24

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