Changeset bef53a9 in buchla-68k for Makefile


Ignore:
Timestamp:
07/01/2017 02:39:06 PM (7 years ago)
Author:
Thomas Lopatic <thomas@…>
Branches:
master
Children:
283e7a6
Parents:
a6f5b95
Message:

More emulator memory, fixed assembler flags.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • Makefile

    ra6f5b95 rbef53a9  
    99# the hand-written assembly language code
    1010
    11 FLAGS :=                -Os -m68000 -mshort -Wall -Wextra \
     11FLAGS :=                -Os -m68000 -Wall -Wextra
     12
     13FLAGS_COM :=    $(FLAGS) -mshort -std=c99 -ffreestanding \
     14                                -fno-strict-aliasing -fno-inline -fno-omit-frame-pointer \
    1215                                -Wpedantic -Wcast-align -Wcast-qual -Wconversion -Wsign-conversion \
    1316                                -Wshadow -Wmissing-declarations -Wredundant-decls \
    1417                                -I include
    1518
    16 FLAGS_COM :=    $(FLAGS) -std=c99 -ffreestanding \
    17                                 -fno-strict-aliasing -fno-inline -fno-omit-frame-pointer
    18 
    19 FLAGS_ASM :=    $(FLAGS)
     19FLAGS_ASM :=    $(FLAGS) -Wa,--register-prefix-optional
    2020
    2121HEADERS :=              $(wildcard include/*.h)
     
    127127
    128128ROM_C :=                booter.c romp.c
    129 ROM_S :=                bios.s timeint.s
     129ROM_S :=                bios.s lowram.s timeint.s
    130130
    131131ROM_CO :=               $(ROM_C:.c=.o)
     
    183183hatari/c.img:   $(wildcard hatari/c/bin/*) $(wildcard hatari/c/work/*)
    184184                                rm -f hatari/c.img
    185                                 atari-hd-image 8 hatari/c.img BUCHLA hatari/c
     185                                atari-hd-image 16 hatari/c.img BUCHLA hatari/c
    186186
    187187emu:                    hatari/c.img
    188188                                hatari \
    189189                                --control-socket /tmp/buchla.sock \
     190                                --memsize 14 \
    190191                                --vdi-width 1280 --vdi-height 960 \
    191192                                --drive-a false --drive-b false \
Note: See TracChangeset for help on using the changeset viewer.