OpenCores
URL https://opencores.org/ocsvn/eco32/eco32/trunk

Subversion Repositories eco32

Compare Revisions

  • This comparison shows the changes necessary to convert path
    /eco32/trunk
    from Rev 244 to Rev 245
    Reverse comparison

Rev 244 → Rev 245

/simtest/Makefile.run
39,34 → 39,34
$(BUILD)/bin/sim -i -r rom01.bin
 
run-rom02:
$(BUILD)/bin/sim -i -r rom02.bin -t 1
$(BUILD)/bin/sim -i -r rom02.bin -s 1 -t 0
 
run-rom03:
$(BUILD)/bin/sim -i -r rom03.bin -t 1
$(BUILD)/bin/sim -i -r rom03.bin -s 1 -t 0
 
run-rom04:
$(BUILD)/bin/sim -i -r rom04.bin -t 1
$(BUILD)/bin/sim -i -r rom04.bin -s 1 -t 0
 
run-rom05:
$(BUILD)/bin/sim -i -r rom05.bin -t 2
$(BUILD)/bin/sim -i -r rom05.bin -s 2 -t 0 -t 1
 
run-rom06:
$(BUILD)/bin/sim -i -r rom06.bin -t 2
$(BUILD)/bin/sim -i -r rom06.bin -s 2 -t 0 -t 1
 
run-rom07:
$(BUILD)/bin/sim -i -r rom07.bin -o $(LOGFILE)
 
run-rom08:
$(BUILD)/bin/sim -i -r rom08.bin -t 1
$(BUILD)/bin/sim -i -r rom08.bin -s 1 -t 0
 
run-rom09:
$(BUILD)/bin/sim -i -r rom09.bin -t 1
$(BUILD)/bin/sim -i -r rom09.bin -s 1 -t 0
 
run-rom10:
$(BUILD)/bin/sim -i -r rom10.bin -c
 
run-romboot: $(DSKNAME)
$(BUILD)/bin/sim -i -r romboot.bin -t 1 -d $(DSKNAME)
$(BUILD)/bin/sim -i -r romboot.bin -s 1 -t 0 -d $(DSKNAME)
 
clean:
rm -f *~ $(LOGFILE) $(DSKNAME)
/binutils/tests-2/intrpt/Makefile
9,7 → 9,7
$(BUILD)/bin/as -o intrpt.o intrpt.s
 
run: intrpt.bin
$(BUILD)/bin/sim -t 1 -l intrpt.bin
$(BUILD)/bin/sim -s 1 -t 0 -l intrpt.bin
 
clean:
rm -f *~ intrpt.bin intrpt.o
/binutils/tests-2/hello/Makefile
9,7 → 9,7
$(BUILD)/bin/as -o hello.o hello.s
 
run: hello.bin
$(BUILD)/bin/sim -t 1 -l hello.bin
$(BUILD)/bin/sim -s 1 -t 0 -l hello.bin
 
clean:
rm -f *~ hello.bin hello.o
/disk/tools/Makefile.run
18,7 → 18,7
all: $(DSK_IMG)
 
run-sim: $(DSK_IMG)
$(BUILD)/bin/sim -i -m 32 -c -t 2 \
$(BUILD)/bin/sim -i -m 32 -c -s 2 -t 0 -t 1 \
-r $(BUILD)/monitor/simulator/monitor.bin \
-d $(DSK_IMG) -o $(RUN_LOG)
 
/hwtests/tlbtest/Makefile
20,7 → 20,7
-Wl-m -Wltlbtest.map -o tlbtest.bin $(TLBTEST_SRC)
 
run: tlbtest.bin
$(BUILD)/bin/sim -i -t 1 -r tlbtest.bin
$(BUILD)/bin/sim -i -s 1 -t 0 -r tlbtest.bin
 
clean:
rm -f *~
/hwtests/divtest/Makefile
26,7 → 26,7
gcc -m32 -g -Wall -o mkdivtest mkdivtest.c
 
run: divtest.bin
$(BUILD)/bin/sim -i -t 1 -r divtest.bin
$(BUILD)/bin/sim -i -s 1 -t 0 -r divtest.bin
 
clean:
rm -f *~ mkdivtest divtest.s divtest.o
/hwtests/remtest/Makefile
26,7 → 26,7
gcc -m32 -g -Wall -o mkremtest mkremtest.c
 
run: remtest.bin
$(BUILD)/bin/sim -i -t 1 -r remtest.bin
$(BUILD)/bin/sim -i -s 1 -t 0 -r remtest.bin
 
clean:
rm -f *~ mkremtest remtest.s remtest.o
/hwtests/jalrtest/Makefile
21,7 → 21,7
$(BUILD)/bin/as -o jalrtest.o jalrtest.s
 
run: jalrtest.bin
$(BUILD)/bin/sim -i -t 1 -r jalrtest.bin
$(BUILD)/bin/sim -i -s 1 -t 0 -r jalrtest.bin
 
clean:
rm -f *~ jalrtest.o jalrtest.bin jalrtest.exo
/hwtests/xcptest/Makefile
20,7 → 20,7
-Wl-m -Wlxcptest.map -o xcptest.bin $(XCPTEST_SRC)
 
run: xcptest.bin
$(BUILD)/bin/sim -i -t 1 -r xcptest.bin
$(BUILD)/bin/sim -i -s 1 -t 0 -r xcptest.bin
 
clean:
rm -f *~
/hwtests/irqtest/Makefile
21,7 → 21,7
$(BUILD)/bin/as -o irqtest.o irqtest.s
 
run: irqtest.bin
$(BUILD)/bin/sim -i -t 1 -r irqtest.bin
$(BUILD)/bin/sim -i -s 1 -t 0 -r irqtest.bin
 
clean:
rm -f *~ irqtest.o irqtest.bin irqtest.exo
/hwtests/multest/Makefile
26,7 → 26,7
gcc -m32 -g -Wall -o mkmultest mkmultest.c
 
run: multest.bin
$(BUILD)/bin/sim -i -t 1 -r multest.bin
$(BUILD)/bin/sim -i -s 1 -t 0 -r multest.bin
 
clean:
rm -f *~ mkmultest multest.s multest.o
/hwtests/ldtest/Makefile
20,7 → 20,7
$(BUILD)/bin/as -o ldtest.o ldtest.s
 
run: ldtest.bin
$(BUILD)/bin/sim -i -t 1 -r ldtest.bin
$(BUILD)/bin/sim -i -s 1 -t 0 -r ldtest.bin
 
clean:
rm -f *~ ldtest.o ldtest.bin ldtest.exo
/hwtests/memtest1/Makefile
21,7 → 21,7
$(BUILD)/bin/as -o memtest1.o memtest1.s
 
run: memtest1.bin
$(BUILD)/bin/sim -i -t 1 -r memtest1.bin
$(BUILD)/bin/sim -i -s 1 -t 0 -r memtest1.bin
 
clean:
rm -f *~ memtest1.o memtest1.bin memtest1.exo
/hwtests/kbdtest/Makefile
20,7 → 20,7
-Wl-m -Wlkbdtest.map -o kbdtest.bin $(KBDTEST_SRC)
 
run: kbdtest.bin
$(BUILD)/bin/sim -i -c -t 1 -r kbdtest.bin
$(BUILD)/bin/sim -i -c -s 1 -t 0 -r kbdtest.bin
 
clean:
rm -f *~
/hwtests/memtest2/Makefile
21,7 → 21,7
$(BUILD)/bin/as -o memtest2.o memtest2.s
 
run: memtest2.bin
$(BUILD)/bin/sim -i -t 1 -r memtest2.bin
$(BUILD)/bin/sim -i -s 1 -t 0 -r memtest2.bin
 
clean:
rm -f *~ memtest2.o memtest2.bin memtest2.exo
/hwtests/sregtest/Makefile
20,7 → 20,7
$(BUILD)/bin/as -o sregtest.o sregtest.s
 
run: sregtest.bin
$(BUILD)/bin/sim -i -t 1 -r sregtest.bin
$(BUILD)/bin/sim -i -s 1 -t 0 -r sregtest.bin
 
clean:
rm -f *~ sregtest.o sregtest.bin sregtest.exo
/hwtests/tmrtest/Makefile
21,7 → 21,7
$(BUILD)/bin/as -o tmrtest.o tmrtest.s
 
run: tmrtest.bin
$(BUILD)/bin/sim -i -t 1 -r tmrtest.bin
$(BUILD)/bin/sim -i -s 1 -t 0 -r tmrtest.bin
 
clean:
rm -f *~ tmrtest.o tmrtest.bin tmrtest.exo
/hwtests/brtest/Makefile
26,7 → 26,7
gcc -m32 -g -Wall -o mkbrtest mkbrtest.c
 
run: brtest.bin
$(BUILD)/bin/sim -i -t 1 -r brtest.bin
$(BUILD)/bin/sim -i -s 1 -t 0 -r brtest.bin
 
clean:
rm -f *~ mkbrtest brtest.s brtest.o
/hwtests/looptest/Makefile
27,7 → 27,7
gcc -m32 -g -Wall -o mklooptest mklooptest.c
 
run: looptest.bin
$(BUILD)/bin/sim -i -t 1 -r looptest.bin
$(BUILD)/bin/sim -i -s 1 -t 0 -r looptest.bin
 
clean:
rm -f *~ mklooptest looptest.s looptest.o
/hwtests/shtest/Makefile
26,7 → 26,7
gcc -m32 -g -Wall -o mkshtest mkshtest.c
 
run: shtest.bin
$(BUILD)/bin/sim -i -t 1 -r shtest.bin
$(BUILD)/bin/sim -i -s 1 -t 0 -r shtest.bin
 
clean:
rm -f *~ mkshtest shtest.s shtest.o
/stdalone/dmpmbr/Makefile
20,7 → 20,7
cp $(EXO) $(BUILD)/stdalone
 
run: $(BIN)
$(BUILD)/bin/sim -i -t 1 -l $(BIN) -a 0x10000 \
$(BUILD)/bin/sim -i -s 1 -t 0 -l $(BIN) -a 0x10000 \
-d $(BUILD)/run/disk.img
 
$(EXO): $(BIN)
/stdalone/hello2/Makefile
20,7 → 20,7
cp $(EXO) $(BUILD)/stdalone
 
run: $(BIN)
$(BUILD)/bin/sim -i -t 1 -l $(BIN) -a 0x10000
$(BUILD)/bin/sim -i -s 1 -t 0 -l $(BIN) -a 0x10000
 
$(EXO): $(BIN)
$(BUILD)/bin/bin2exo -S2 0x10000 $(BIN) $(EXO)
/stdalone/dactest/Makefile
23,7 → 23,7
cp $(EXO) $(BUILD)/stdalone
 
run: $(BIN)
$(BUILD)/bin/sim -i -t 1 -l $(BIN) -a 0x10000
$(BUILD)/bin/sim -i -s 1 -t 0 -l $(BIN) -a 0x10000
 
$(EXO): $(BIN)
$(BUILD)/bin/bin2exo -S2 0x10000 $(BIN) $(EXO)
/stdalone/dskchk2/dskchk2/Makefile
20,7 → 20,7
cp $(EXO) $(BUILD)/stdalone
 
run: $(BIN)
$(BUILD)/bin/sim -i -t 1 -l $(BIN) -a 0x10000 \
$(BUILD)/bin/sim -i -s 1 -t 0 -l $(BIN) -a 0x10000 \
-d ../disk.img
 
$(EXO): $(BIN)
/stdalone/mkpart/Makefile
21,7 → 21,7
cp $(EXO) $(BUILD)/stdalone
 
run: $(BIN)
$(BUILD)/bin/sim -i -t 1 -l $(BIN) -a 0x10000 \
$(BUILD)/bin/sim -i -s 1 -t 0 -l $(BIN) -a 0x10000 \
-d $(BUILD)/run/disk.img
 
$(EXO): $(BIN)
/stdalone/shpart/Makefile
20,7 → 20,7
cp $(EXO) $(BUILD)/stdalone
 
run: $(BIN)
$(BUILD)/bin/sim -i -t 1 -l $(BIN) -a 0x10000 \
$(BUILD)/bin/sim -i -s 1 -t 0 -l $(BIN) -a 0x10000 \
-d $(BUILD)/run/disk.img
 
$(EXO): $(BIN)
/stdalone/hello/Makefile
21,7 → 21,7
cp $(EXO) $(BUILD)/stdalone
 
run: $(BIN)
$(BUILD)/bin/sim -i -t 1 -l $(BIN) -a 0x10000
$(BUILD)/bin/sim -i -s 1 -t 0 -l $(BIN) -a 0x10000
 
$(EXO): $(BIN)
$(BUILD)/bin/bin2exo -S2 0x10000 $(BIN) $(EXO)
/stdalone/onetask/os/Makefile
8,7 → 8,7
all: $(BIN) $(EXO)
 
run: $(BIN)
$(BUILD)/bin/sim -i -t 1 -l $(BIN) -a 0x10000
$(BUILD)/bin/sim -i -s 1 -t 0 -l $(BIN) -a 0x10000
 
$(EXO): $(BIN)
$(BUILD)/bin/bin2exo -S2 0x10000 $(BIN) $(EXO)
/stdalone/dskchk/Makefile
20,7 → 20,7
cp $(EXO) $(BUILD)/stdalone
 
run: $(BIN)
$(BUILD)/bin/sim -i -t 1 -l $(BIN) -a 0x10000 \
$(BUILD)/bin/sim -i -s 1 -t 0 -l $(BIN) -a 0x10000 \
-d $(BUILD)/run/disk.img
 
$(EXO): $(BIN)
/stdalone/memsize/Makefile
20,7 → 20,7
cp $(EXO) $(BUILD)/stdalone
 
run: $(BIN)
$(BUILD)/bin/sim -i -t 1 -l $(BIN) -a 0x10000
$(BUILD)/bin/sim -i -s 1 -t 0 -l $(BIN) -a 0x10000
 
$(EXO): $(BIN)
$(BUILD)/bin/bin2exo -S2 0x10000 $(BIN) $(EXO)
/stdalone/bottles/Makefile
20,7 → 20,7
cp $(EXO) $(BUILD)/stdalone
 
run: $(BIN)
$(BUILD)/bin/sim -i -t 1 -l $(BIN) -a 0x10000
$(BUILD)/bin/sim -i -s 1 -t 0 -l $(BIN) -a 0x10000
 
$(EXO): $(BIN)
$(BUILD)/bin/bin2exo -S2 0x10000 $(BIN) $(EXO)
/stdalone/wrtmbr/Makefile
20,7 → 20,7
cp $(EXO) $(BUILD)/stdalone
 
run: $(BIN)
$(BUILD)/bin/sim -i -t 1 -l $(BIN) -a 0x10000 \
$(BUILD)/bin/sim -i -s 1 -t 0 -l $(BIN) -a 0x10000 \
-d $(BUILD)/run/disk.img
 
$(EXO): $(BIN)
/stdalone/twotasks-1/os/Makefile
8,7 → 8,7
all: $(BIN) $(EXO)
 
run: $(BIN)
$(BUILD)/bin/sim -i -t 1 -l $(BIN) -a 0x10000
$(BUILD)/bin/sim -i -s 1 -t 0 -l $(BIN) -a 0x10000
 
$(EXO): $(BIN)
$(BUILD)/bin/bin2exo -S2 0x10000 $(BIN) $(EXO)
/stdalone/twotasks-2/os/Makefile
8,7 → 8,7
all: $(BIN) $(EXO)
 
run: $(BIN)
$(BUILD)/bin/sim -i -t 1 -l $(BIN) -a 0x10000
$(BUILD)/bin/sim -i -s 1 -t 0 -l $(BIN) -a 0x10000
 
$(EXO): $(BIN)
$(BUILD)/bin/bin2exo -S2 0x10000 $(BIN) $(EXO)
/stdalone/memtest/Makefile
20,7 → 20,7
cp $(EXO) $(BUILD)/stdalone
 
run: $(BIN)
$(BUILD)/bin/sim -i -m 32 -t 1 -l $(BIN) -a 0x10000
$(BUILD)/bin/sim -i -m 32 -s 1 -t 0 -l $(BIN) -a 0x10000
 
$(EXO): $(BIN)
$(BUILD)/bin/bin2exo -S2 0x10000 $(BIN) $(EXO)

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.