Changeset 3148e92 in thomson


Ignore:
Timestamp:
Mar 26, 2013, 11:08:20 PM (11 years ago)
Author:
Adrien Destugues <pulkomandy@…>
Branches:
main
Children:
6a7f7f1
Parents:
1180ce9
Message:

Some fixes.

git-svn-id: svn://localhost/thomson@46 85ae3b6b-dc8f-4344-a89d-598714f2e4e5

Location:
code/C/HxCHost
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • code/C/HxCHost/Makefile

    r1180ce9 r3148e92  
    1717
    1818# System settings -----------------------------------------------
    19 PREFIX=m6809-thomson
     19PREFIX=m6809-thomson-none
    2020CC=$(PREFIX)-gcc
    2121AS=$(PREFIX)-as
     22LIBPATH=$(shell dirname `which m6809-thomson-none-gcc`)/../lib/gcc/m6809-thomson-none/4.6.1/
    2223
    2324# Generic rules -------------------------------------------------
    2425# HFE  disk image (for HxC FE)
    25 out_sap.hfe: out.sap
    26         hxcfloppyemulator_convert out.sap -HFE
    27         cp out_sap.hfe /mo5/MO5/
    28         unmount /mo5
    29         rm -r /mo5
     26AUTOBOOT.HFE: out.sap
     27        hxcfe -finput:out.sap -conv:HXC_HFE -foutput:AUTOBOOT.HFE
    3028
    3129# Disk Image
    3230out.sap: TEST.BIN
    33         sapfs -c $@
     31        cp DOS-MO.SAP $@
    3432        sapfs -a $@ $<
    3533
     
    3735TEST.BIN TEST.map: $(OBJECTS) TEST.script
    3836        #$(CC) -v -Os $(OBJECTS) -o TEST.BIN -Wl,--map -Wl,-m -Wl,-Ttext,0x6100 -nostdlib -lgcc
    39         lwlink --decb $(OBJECTS) --output=TEST.BIN --map=TEST.map --script=TEST.script --library-path=/boot/home/config/lib/gcc/m6809-thomson/4.6.1 --library-path=/boot/home/config/m6809-thomson/lib -lgcc
     37        lwlink --decb $(OBJECTS) --output=TEST.BIN --map=TEST.map --script=TEST.script --library-path=$(LIBPATH) --library-path=/boot/home/config/m6809-thomson/lib -lgcc
    4038
    4139#Compiling
  • code/C/HxCHost/pff/diskio.c

    r1180ce9 r3148e92  
    103103{
    104104        static WORD ptr;
    105         static char wrbuf[256];
     105        static char wrbuf[512];
    106106                // Separate buffer because we need to use map_sector, and it kills secbuf
    107107
     
    131131                        ++ptr;
    132132                }
    133         mon_putc(' ');
    134133        }
    135134
Note: See TracChangeset for help on using the changeset viewer.