Changeset 53a8288 in buchla-68k
- Timestamp:
- 08/19/2017 10:07:49 AM (7 years ago)
- Branches:
- master
- Children:
- 23e1597
- Parents:
- ad89950
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
Makefile
rad89950 r53a8288 7 7 CROSS_AR := $(CROSS_PRE)-ar 8 8 CROSS_OBJC := $(CROSS_PRE)-objcopy 9 CROSS_OBJD := $(CROSS_PRE)-objdump 9 10 CROSS_NM := $(CROSS_PRE)-nm 10 11 … … 181 182 prolog.a libcio.a vlib.a iolib.a libsm.a lib700.a -lgcc 182 183 chmod a-x bios.elf 183 misc/flopvbl.sh 184 misc/flopvbl.sh $(CROSS_OBJD) 184 185 185 186 RAM_C := addfpu.c adfield.c adselbx.c asgdsp.c asgvce.c barbadj.c chgsef.c \ -
misc/flopvbl.sh
rad89950 r53a8288 1 1 # Check, whether FLOPVBL == flopvbl and FLOCK == flock. If yes, then COUNT == 2. 2 2 3 COUNT=$(m68k-none-elf-objdump --syms bios.elf | 3 OBJD=${1} 4 5 if [ -z "${OBJD}" ]; then 6 OBJD=m68k-none-elf-objdump 7 fi 8 9 COUNT=$(${OBJD} --syms bios.elf | 4 10 grep -i -e flopvbl -e flock | 5 11 cut -c -8 |
Note:
See TracChangeset
for help on using the changeset viewer.