changeset 131:1209ef15374f

leo-obj/main: created
author Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
date Sun, 06 Apr 2014 22:33:24 +0000
parents 87b82398a08b
children af0f8bfa3b3a
files .hgignore leo-obj/main/Create_RVtasks.obj leo-obj/main/Makefile leo-obj/main/init.obj leo-obj/main/int.obj leo-obj/main/main.obj leo-obj/main/mem_load.obj leo-obj/main/sys_dummy.obj
diffstat 8 files changed, 16 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/.hgignore	Sun Apr 06 22:14:39 2014 +0000
+++ b/.hgignore	Sun Apr 06 22:33:24 2014 +0000
@@ -10,6 +10,7 @@
 ^compal/c156-boot\.
 ^compal/osmovoodoo
 
+^leo-obj/.*\.disasm$
 ^leo-obj/tool/tiobjd$
 
 ^miscprog/atsc$
Binary file leo-obj/main/Create_RVtasks.obj has changed
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/leo-obj/main/Makefile	Sun Apr 06 22:33:24 2014 +0000
@@ -0,0 +1,15 @@
+TARGETS=Create_RVtasks.disasm init.disasm int.disasm main.disasm \
+	mem_load.disasm sys_dummy.disasm
+TOOL=	../tool/tiobjd
+
+all:	${TARGETS}
+
+.SUFFIXES:	.obj .disasm
+
+.obj.disasm:
+	${TOOL} $< disasm > $@
+
+${TARGETS}:	${TOOL} Makefile
+
+clean:
+	rm -f *.disasm
Binary file leo-obj/main/init.obj has changed
Binary file leo-obj/main/int.obj has changed
Binary file leo-obj/main/main.obj has changed
Binary file leo-obj/main/mem_load.obj has changed
Binary file leo-obj/main/sys_dummy.obj has changed