Changeset a6da9fb in buchla-emu


Ignore:
Timestamp:
07/30/2017 05:33:49 PM (7 years ago)
Author:
Thomas Lopatic <thomas@…>
Branches:
master
Children:
caff491
Parents:
0726522
Message:

Create buchla.disk, a 1.44M FAT12 floppy disk image.

Files:
1 added
2 edited

Legend:

Unmodified
Added
Removed
  • .gitignore

    r0726522 ra6da9fb  
     1bios.abs
     2midas.abs
     3
    14build
    25buchla
    3 bios.abs
     6mkdisk
     7
     8buchla.disk
  • Makefile

    r0726522 ra6da9fb  
    2222                                -Wstrict-prototypes -Wmissing-declarations -Wredundant-decls \
    2323                                -I cpu -I emu -I build -I $(SDL2_INC)
     24
     25FLAGS_AUX :=    $(FLAGS) -Wall -Wextra \
     26                                -Wpedantic -Wconversion -Wsign-conversion -Wshadow \
     27                                -Wstrict-prototypes -Wmissing-declarations -Wredundant-decls
    2428
    2529ifndef WIN
     
    6872HEADERS :=              $(wildcard cpu/*.h) $(wildcard emu/*.h)
    6973
    70 all:                    buchla
     74all:                    buchla buchla.disk
    7175
    7276build:
     
    112116                                $(LIBS)
    113117
     118mkdisk:                 emu/mkdisk.c
     119                                $(GCC) $(FLAGS_AUX) -o mkdisk emu/mkdisk.c
     120
     121buchla.disk:    mkdisk midas.abs
     122                                ./mkdisk
     123
    114124run:                    buchla
    115125                                ./buchla
     
    122132                                rm -rf build
    123133                                rm -f buchla
     134                                rm -f mkdisk
     135                                rm -f buchla.disk
Note: See TracChangeset for help on using the changeset viewer.