forked from bcd/freewpc
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathconfig.example
62 lines (53 loc) · 1.58 KB
/
config.example
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
#
# This is an example FreeWPC config file.
# If you don't already have a .config, you can rename this one
# and change anything you don't like.
#
# If you want to simulate, enable NATIVE.
#NATIVE := y
# Set the machine you are trying to build.
# If you are primarily working with a single machine type, it is
# easier to specify it here than saying MACHINE=xxx every time you run
# make.
#MACHINE := tz
#MACHINE := afm
#MACHINE := wcs
#MACHINE := t2
#MACHINE := fh
#MACHINE := tester
#MACHINE := tzsound
#MACHINE := tspp
#
# Set this to the directory in which MAME roms should be installed.
# If you don't have MAME, then you can leave this undefined.
#
# Under Cygwin use something like the following. make has trouble
# with filenames that have spaces or colons in them.
#TARGET_ROMPATH := "/cygdrive/c/Progra~1/VPinmame/roms"
#
# Set to 'y' if you wish to use the FreeWPC console debugger.
#
#FREEWPC_DEBUGGER := n
#
# Set if you wish to override the major/minor version numbers
# to be used. SYSTEM refers to the core code, MACHINE to the
# game rev.
#
#SYSTEM_MAJOR=
#SYSTEM_MINOR=
#MACHINE_MAJOR=
#MACHINE_MINOR=
# Set to the version of gcc6809 installed.
# The 4.3.x releases are recommended, although 4.2.x releases
# should still work.
#GCC_VERSION := 4.2.3
GCC_VERSION := 4.3.4
# If you have special flags to pass to the compiler, define them here.
#EXTRA_CFLAGS += -save-temps
#EXTRA_CFLAGS += -DFASTBOOT
#EXTRA_CFLAGS += -DCONFIG_DEBUG_STACK
#EXTRA_CFLAGS += -DCONFIG_PARALLEL_DEBUG
#EXTRA_CFLAGS += -DFREE_ONLY
# For debugging the compiler itself.
#DEBUG_COMPILER := y
# vim: set filetype=make: