Changeset cbe2c15 in buchla-68k
- Timestamp:
- 07/02/2017 06:55:38 PM (7 years ago)
- Branches:
- master
- Children:
- 6888aa2
- Parents:
- 050d522
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
Makefile
r050d522 rcbe2c15 24 24 HEADERS := $(wildcard include/*.h) 25 25 26 all: rom.abs midas.abs26 all: bios.abs midas.abs 27 27 28 28 PROLOG_C := croot.c … … 166 166 $(CROSS_GCC) $(FLAGS_ASM) -c -o $@ $< 167 167 168 rom.abs: $(ROM_OBJ) \168 bios.abs: $(ROM_OBJ) \ 169 169 prolog.a libcio.a vlib.a iolib.a libsm.a lib700.a 170 170 $(CROSS_GCC) $(FLAGS_LNK) -Wl,--script,misc/rom.ld,--entry,0x100000 \ 171 -o rom.abs $(ROM_OBJ) \171 -o bios.abs $(ROM_OBJ) \ 172 172 prolog.a libcio.a vlib.a iolib.a libsm.a lib700.a -lgcc 173 173 … … 233 233 rm -rf build 234 234 rm -f prolog.a iolib.a libcio.a libsm.a lib700.a vlib.a 235 rm -f rom.abs midas.abs235 rm -f bios.abs midas.abs 236 236 rm -f hatari/c.img 237 237 rm -f hatari/d/out/* -
readme.txt
r050d522 rcbe2c15 94 94 Once you have the cross-toolchain in place, invoke 95 95 96 make rom.abs96 make bios.abs 97 97 98 98 from the top-level directory of this repository to build the BIOS and … … 163 163 164 164 from the top-level directory of the repository. This creates a 165 harddrive image s from hatari/c and starts the emulator with166 appropriatecommand line options.165 harddrive image from hatari/c and starts the emulator with appropriate 166 command line options. 167 167 168 168 When the EmuTOS desktop comes up, open the C:\BIN folder and run … … 195 195 (.a) files. 196 196 197 * rom.abs, which is the BIOS and ROMP debug monitor.197 * bios.abs, which is the BIOS and ROMP debug monitor. 198 198 199 199 * midas.abs is notably absent. Its object (.o) files are all there, … … 205 205 decided to focus our attention on the cross-toolchain instead. 206 206 207 For your convenience, all the .s, .o, and .a files as well as rom.abs 208 can be found in the alcyon subdirectory of this repository. 207 For your convenience, all the .s, .o, and .a files, as well as 208 bios.abs can also be found in the alcyon subdirectory of this 209 repository. Just in case you are interested in them, but would prefer 210 not to go through the emulator exercise.
Note:
See TracChangeset
for help on using the changeset viewer.