Skip to content
Snippets Groups Projects
Commit e32e95e0 authored by Mark Tearle's avatar Mark Tearle
Browse files

Abstract Version out into header file and bump version

parent 44a7b807
Branches
No related merge requests found
......@@ -4,7 +4,7 @@ OBJS = \
motors.o keypad.o display_basic.o coinmech.o chime.o \
helpers.o main_basic.o sci.o \
vectors.o start.o romsrc.o xmodem.o mic.o
INCLUDES = vend.h keypad.h chime.h asm.h display_basic.h ports.h types.h
INCLUDES = vend.h keypad.h chime.h asm.h display_basic.h ports.h types.h version.h
# debugging doesn't get compiled into the ROM image
CFLAGS = -m68hc11 -mshort -Wall -O1 \
-msoft-reg-count=0 -ffixed-z -g -fomit-frame-pointer
......
......@@ -4,8 +4,7 @@
* and snacks.
*/
#define VERSION_STRING "X 20040625"
#include "version.h"
#include "display_basic.h"
#include "keypad.h"
#include "chime.h"
......
#ifndef _VERSION_H_
#define _VERSION_H_
#include "vend.h"
/* Snack machine ROM version */
#define VERSION_STRING "Y 20150319"
#endif /* _VERSION_H_ */
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment