├── .gitignore ├── .travis.yml ├── LICENSE ├── Makefile ├── README ├── TODO ├── example ├── example.s ├── rules.mk └── script.ld ├── mkconf └── default.mk ├── src ├── cpu │ ├── cpu.c │ ├── rules.mk │ └── sparc │ │ ├── decoder.c │ │ ├── isn.h │ │ ├── iu.c │ │ ├── rules.mk │ │ ├── sparc.c │ │ ├── sparc.h │ │ ├── trap.c │ │ └── trap.h ├── dev │ ├── device.c │ ├── mem │ │ ├── file.c │ │ ├── ramctl.c │ │ ├── ramctl.h │ │ └── rules.mk │ ├── mmu │ │ └── sparc │ │ │ ├── nommu │ │ │ ├── nommu.c │ │ │ └── rules.mk │ │ │ └── srmmu │ │ │ ├── access.c │ │ │ ├── access.h │ │ │ ├── rules.mk │ │ │ ├── srmmu.c │ │ │ └── srmmu.h │ └── rules.mk ├── include │ ├── cpu │ │ ├── cpu.h │ │ └── sparc │ │ │ ├── sparc.h │ │ │ └── types.h │ ├── dev │ │ ├── cfg │ │ │ ├── filemem.h │ │ │ ├── mmu │ │ │ │ └── sparc │ │ │ │ │ ├── nommu.h │ │ │ │ │ └── srmmu.h │ │ │ └── ramctl.h │ │ └── device.h │ ├── list.h │ ├── types.h │ └── utils.h ├── main.c ├── rules.mk └── script.ld └── tests ├── isa ├── add │ ├── add.s │ ├── main.c │ └── rules.mk ├── addcc │ ├── addcc.s │ ├── main.c │ └── rules.mk ├── addx │ ├── addx.s │ ├── main.c │ └── rules.mk ├── addxcc │ ├── addxcc.s │ ├── main.c │ └── rules.mk ├── and │ ├── and.s │ ├── main.c │ └── rules.mk ├── andcc │ ├── andcc.s │ ├── main.c │ └── rules.mk ├── andn │ ├── andn.s │ ├── main.c │ └── rules.mk ├── andncc │ ├── andncc.s │ ├── main.c │ └── rules.mk ├── ba │ ├── ba.s │ ├── main.c │ └── rules.mk ├── bcc │ ├── bcc.s │ ├── main.c │ └── rules.mk ├── bcs │ ├── bcs.s │ ├── main.c │ └── rules.mk ├── be │ ├── be.s │ ├── main.c │ └── rules.mk ├── bg │ ├── bg.s │ ├── main.c │ └── rules.mk ├── bge │ ├── bge.s │ ├── main.c │ └── rules.mk ├── bgu │ ├── bgu.s │ ├── main.c │ └── rules.mk ├── bl │ ├── bl.s │ ├── main.c │ └── rules.mk ├── ble │ ├── ble.s │ ├── main.c │ └── rules.mk ├── bleu │ ├── bleu.s │ ├── main.c │ └── rules.mk ├── bn │ ├── bn.s │ ├── main.c │ └── rules.mk ├── bne │ ├── bne.s │ ├── main.c │ └── rules.mk ├── bneg │ ├── bneg.s │ ├── main.c │ └── rules.mk ├── bpos │ ├── bpos.s │ ├── main.c │ └── rules.mk ├── bvc │ ├── bvc.s │ ├── main.c │ └── rules.mk ├── bvs │ ├── bvs.s │ ├── main.c │ └── rules.mk ├── call │ ├── call.s │ ├── main.c │ └── rules.mk ├── flush │ ├── flush.s │ ├── main.c │ └── rules.mk ├── g0 │ ├── g0.s │ ├── main.c │ └── rules.mk ├── jmpl │ ├── jmpl.s │ ├── main.c │ └── rules.mk ├── ld │ ├── ld.s │ ├── main.c │ └── rules.mk ├── lda │ ├── lda.s │ ├── main.c │ └── rules.mk ├── ldd │ ├── ldd.s │ ├── main.c │ └── rules.mk ├── ldda │ ├── ldda.s │ ├── main.c │ └── rules.mk ├── ldsb │ ├── ldsb.s │ ├── main.c │ └── rules.mk ├── ldsba │ ├── ldsba.s │ ├── main.c │ └── rules.mk ├── ldsh │ ├── ldsh.s │ ├── main.c │ └── rules.mk ├── ldsha │ ├── ldsha.s │ ├── main.c │ └── rules.mk ├── ldstub │ ├── ldstub.s │ ├── main.c │ └── rules.mk ├── ldstuba │ ├── ldstuba.s │ ├── main.c │ └── rules.mk ├── ldub │ ├── ldub.s │ ├── main.c │ └── rules.mk ├── lduba │ ├── lduba.s │ ├── main.c │ └── rules.mk ├── lduh │ ├── lduh.s │ ├── main.c │ └── rules.mk ├── lduha │ ├── lduha.s │ ├── main.c │ └── rules.mk ├── mulscc │ ├── main.c │ ├── mulscc.s │ └── rules.mk ├── or │ ├── main.c │ ├── or.s │ └── rules.mk ├── orcc │ ├── main.c │ ├── orcc.s │ └── rules.mk ├── orn │ ├── main.c │ ├── orn.s │ └── rules.mk ├── orncc │ ├── main.c │ ├── orncc.s │ └── rules.mk ├── rdasr │ ├── main.c │ ├── rdasr.s │ └── rules.mk ├── rdpsr │ ├── main.c │ ├── rdpsr.s │ └── rules.mk ├── rdtbr │ ├── main.c │ ├── rdtbr.s │ └── rules.mk ├── rdwim │ ├── main.c │ ├── rdwim.s │ └── rules.mk ├── rett │ ├── main.c │ ├── rett.s │ └── rules.mk ├── save-restore │ ├── main.c │ ├── rules.mk │ └── save-restore.s ├── sdiv │ ├── main.c │ ├── rules.mk │ └── sdiv.s ├── sdivcc │ ├── main.c │ ├── rules.mk │ └── sdivcc.s ├── sethi │ ├── main.c │ ├── rules.mk │ └── sethi.s ├── sll │ ├── main.c │ ├── rules.mk │ └── sll.s ├── smul │ ├── main.c │ ├── rules.mk │ └── smul.s ├── smulcc │ ├── main.c │ ├── rules.mk │ └── smulcc.s ├── sra │ ├── main.c │ ├── rules.mk │ └── sra.s ├── srl │ ├── main.c │ ├── rules.mk │ └── srl.s ├── st │ ├── main.c │ ├── rules.mk │ └── st.s ├── sta │ ├── main.c │ ├── rules.mk │ └── sta.s ├── stb │ ├── main.c │ ├── rules.mk │ └── stb.s ├── stba │ ├── main.c │ ├── rules.mk │ └── stba.s ├── stbar │ ├── main.c │ ├── rules.mk │ └── stbar.s ├── std │ ├── main.c │ ├── rules.mk │ └── std.s ├── stda │ ├── main.c │ ├── rules.mk │ └── stda.s ├── sth │ ├── main.c │ ├── rules.mk │ └── sth.s ├── stha │ ├── main.c │ ├── rules.mk │ └── stha.s ├── sub │ ├── main.c │ ├── rules.mk │ └── sub.s ├── subcc │ ├── main.c │ ├── rules.mk │ └── subcc.s ├── subx │ ├── main.c │ ├── rules.mk │ └── subx.s ├── subxcc │ ├── main.c │ ├── rules.mk │ └── subxcc.s ├── swap │ ├── main.c │ ├── rules.mk │ └── swap.s ├── swapa │ ├── main.c │ ├── rules.mk │ └── swapa.s ├── ta │ ├── main.c │ ├── rules.mk │ └── ta.s ├── taddcc │ ├── main.c │ ├── rules.mk │ └── taddcc.s ├── taddcctv │ ├── main.c │ ├── rules.mk │ └── taddcctv.s ├── tcc │ ├── main.c │ ├── rules.mk │ └── tcc.s ├── tcs │ ├── main.c │ ├── rules.mk │ └── tcs.s ├── te │ ├── main.c │ ├── rules.mk │ └── te.s ├── tg │ ├── main.c │ ├── rules.mk │ └── tg.s ├── tge │ ├── main.c │ ├── rules.mk │ └── tge.s ├── tgu │ ├── main.c │ ├── rules.mk │ └── tgu.s ├── tl │ ├── main.c │ ├── rules.mk │ └── tl.s ├── tle │ ├── main.c │ ├── rules.mk │ └── tle.s ├── tleu │ ├── main.c │ ├── rules.mk │ └── tleu.s ├── tn │ ├── main.c │ ├── rules.mk │ └── tn.s ├── tne │ ├── main.c │ ├── rules.mk │ └── tne.s ├── tneg │ ├── main.c │ ├── rules.mk │ └── tneg.s ├── tpos │ ├── main.c │ ├── rules.mk │ └── tpos.s ├── tsubcc │ ├── main.c │ ├── rules.mk │ └── tsubcc.s ├── tsubcctv │ ├── main.c │ ├── rules.mk │ └── tsubcctv.s ├── tvc │ ├── main.c │ ├── rules.mk │ └── tvc.s ├── tvs │ ├── main.c │ ├── rules.mk │ └── tvs.s ├── udiv │ ├── main.c │ ├── rules.mk │ └── udiv.s ├── udivcc │ ├── main.c │ ├── rules.mk │ └── udivcc.s ├── umul │ ├── main.c │ ├── rules.mk │ └── umul.s ├── umulcc │ ├── main.c │ ├── rules.mk │ └── umulcc.s ├── unimp │ ├── main.c │ ├── rules.mk │ └── unimp.s ├── wrasr │ ├── main.c │ ├── rules.mk │ └── wrasr.s ├── wrpsr │ ├── main.c │ ├── rules.mk │ └── wrpsr.s ├── wrtbr │ ├── main.c │ ├── rules.mk │ └── wrtbr.s ├── wrwim │ ├── main.c │ ├── rules.mk │ └── wrwim.s ├── xnor │ ├── main.c │ ├── rules.mk │ └── xnor.s ├── xnorcc │ ├── main.c │ ├── rules.mk │ └── xnorcc.s ├── xor │ ├── main.c │ ├── rules.mk │ └── xor.s └── xorcc │ ├── main.c │ ├── rules.mk │ └── xorcc.s ├── mmu ├── main.c ├── mmu.s └── rules.mk ├── rules.mk ├── sparc.ld ├── test-utils.c ├── test-utils.h └── tests.sh /.gitignore: -------------------------------------------------------------------------------- 1 | build/ 2 | out/ 3 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/Makefile -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/README -------------------------------------------------------------------------------- /TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/TODO -------------------------------------------------------------------------------- /example/example.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/example/example.s -------------------------------------------------------------------------------- /example/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/example/rules.mk -------------------------------------------------------------------------------- /example/script.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/example/script.ld -------------------------------------------------------------------------------- /mkconf/default.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/mkconf/default.mk -------------------------------------------------------------------------------- /src/cpu/cpu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/src/cpu/cpu.c -------------------------------------------------------------------------------- /src/cpu/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/src/cpu/rules.mk -------------------------------------------------------------------------------- /src/cpu/sparc/decoder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/src/cpu/sparc/decoder.c -------------------------------------------------------------------------------- /src/cpu/sparc/isn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/src/cpu/sparc/isn.h -------------------------------------------------------------------------------- /src/cpu/sparc/iu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/src/cpu/sparc/iu.c -------------------------------------------------------------------------------- /src/cpu/sparc/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/src/cpu/sparc/rules.mk -------------------------------------------------------------------------------- /src/cpu/sparc/sparc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/src/cpu/sparc/sparc.c -------------------------------------------------------------------------------- /src/cpu/sparc/sparc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/src/cpu/sparc/sparc.h -------------------------------------------------------------------------------- /src/cpu/sparc/trap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/src/cpu/sparc/trap.c -------------------------------------------------------------------------------- /src/cpu/sparc/trap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/src/cpu/sparc/trap.h -------------------------------------------------------------------------------- /src/dev/device.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/src/dev/device.c -------------------------------------------------------------------------------- /src/dev/mem/file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/src/dev/mem/file.c -------------------------------------------------------------------------------- /src/dev/mem/ramctl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/src/dev/mem/ramctl.c -------------------------------------------------------------------------------- /src/dev/mem/ramctl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/src/dev/mem/ramctl.h -------------------------------------------------------------------------------- /src/dev/mem/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/src/dev/mem/rules.mk -------------------------------------------------------------------------------- /src/dev/mmu/sparc/nommu/nommu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/src/dev/mmu/sparc/nommu/nommu.c -------------------------------------------------------------------------------- /src/dev/mmu/sparc/nommu/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/src/dev/mmu/sparc/nommu/rules.mk -------------------------------------------------------------------------------- /src/dev/mmu/sparc/srmmu/access.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/src/dev/mmu/sparc/srmmu/access.c -------------------------------------------------------------------------------- /src/dev/mmu/sparc/srmmu/access.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/src/dev/mmu/sparc/srmmu/access.h -------------------------------------------------------------------------------- /src/dev/mmu/sparc/srmmu/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/src/dev/mmu/sparc/srmmu/rules.mk -------------------------------------------------------------------------------- /src/dev/mmu/sparc/srmmu/srmmu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/src/dev/mmu/sparc/srmmu/srmmu.c -------------------------------------------------------------------------------- /src/dev/mmu/sparc/srmmu/srmmu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/src/dev/mmu/sparc/srmmu/srmmu.h -------------------------------------------------------------------------------- /src/dev/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/src/dev/rules.mk -------------------------------------------------------------------------------- /src/include/cpu/cpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/src/include/cpu/cpu.h -------------------------------------------------------------------------------- /src/include/cpu/sparc/sparc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/src/include/cpu/sparc/sparc.h -------------------------------------------------------------------------------- /src/include/cpu/sparc/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/src/include/cpu/sparc/types.h -------------------------------------------------------------------------------- /src/include/dev/cfg/filemem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/src/include/dev/cfg/filemem.h -------------------------------------------------------------------------------- /src/include/dev/cfg/mmu/sparc/nommu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/src/include/dev/cfg/mmu/sparc/nommu.h -------------------------------------------------------------------------------- /src/include/dev/cfg/mmu/sparc/srmmu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/src/include/dev/cfg/mmu/sparc/srmmu.h -------------------------------------------------------------------------------- /src/include/dev/cfg/ramctl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/src/include/dev/cfg/ramctl.h -------------------------------------------------------------------------------- /src/include/dev/device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/src/include/dev/device.h -------------------------------------------------------------------------------- /src/include/list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/src/include/list.h -------------------------------------------------------------------------------- /src/include/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/src/include/types.h -------------------------------------------------------------------------------- /src/include/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/src/include/utils.h -------------------------------------------------------------------------------- /src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/src/main.c -------------------------------------------------------------------------------- /src/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/src/rules.mk -------------------------------------------------------------------------------- /src/script.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/src/script.ld -------------------------------------------------------------------------------- /tests/isa/add/add.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/add/add.s -------------------------------------------------------------------------------- /tests/isa/add/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/add/main.c -------------------------------------------------------------------------------- /tests/isa/add/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/add/rules.mk -------------------------------------------------------------------------------- /tests/isa/addcc/addcc.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/addcc/addcc.s -------------------------------------------------------------------------------- /tests/isa/addcc/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/addcc/main.c -------------------------------------------------------------------------------- /tests/isa/addcc/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/addcc/rules.mk -------------------------------------------------------------------------------- /tests/isa/addx/addx.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/addx/addx.s -------------------------------------------------------------------------------- /tests/isa/addx/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/addx/main.c -------------------------------------------------------------------------------- /tests/isa/addx/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/addx/rules.mk -------------------------------------------------------------------------------- /tests/isa/addxcc/addxcc.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/addxcc/addxcc.s -------------------------------------------------------------------------------- /tests/isa/addxcc/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/addxcc/main.c -------------------------------------------------------------------------------- /tests/isa/addxcc/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/addxcc/rules.mk -------------------------------------------------------------------------------- /tests/isa/and/and.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/and/and.s -------------------------------------------------------------------------------- /tests/isa/and/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/and/main.c -------------------------------------------------------------------------------- /tests/isa/and/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/and/rules.mk -------------------------------------------------------------------------------- /tests/isa/andcc/andcc.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/andcc/andcc.s -------------------------------------------------------------------------------- /tests/isa/andcc/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/andcc/main.c -------------------------------------------------------------------------------- /tests/isa/andcc/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/andcc/rules.mk -------------------------------------------------------------------------------- /tests/isa/andn/andn.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/andn/andn.s -------------------------------------------------------------------------------- /tests/isa/andn/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/andn/main.c -------------------------------------------------------------------------------- /tests/isa/andn/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/andn/rules.mk -------------------------------------------------------------------------------- /tests/isa/andncc/andncc.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/andncc/andncc.s -------------------------------------------------------------------------------- /tests/isa/andncc/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/andncc/main.c -------------------------------------------------------------------------------- /tests/isa/andncc/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/andncc/rules.mk -------------------------------------------------------------------------------- /tests/isa/ba/ba.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/ba/ba.s -------------------------------------------------------------------------------- /tests/isa/ba/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/ba/main.c -------------------------------------------------------------------------------- /tests/isa/ba/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/ba/rules.mk -------------------------------------------------------------------------------- /tests/isa/bcc/bcc.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/bcc/bcc.s -------------------------------------------------------------------------------- /tests/isa/bcc/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/bcc/main.c -------------------------------------------------------------------------------- /tests/isa/bcc/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/bcc/rules.mk -------------------------------------------------------------------------------- /tests/isa/bcs/bcs.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/bcs/bcs.s -------------------------------------------------------------------------------- /tests/isa/bcs/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/bcs/main.c -------------------------------------------------------------------------------- /tests/isa/bcs/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/bcs/rules.mk -------------------------------------------------------------------------------- /tests/isa/be/be.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/be/be.s -------------------------------------------------------------------------------- /tests/isa/be/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/be/main.c -------------------------------------------------------------------------------- /tests/isa/be/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/be/rules.mk -------------------------------------------------------------------------------- /tests/isa/bg/bg.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/bg/bg.s -------------------------------------------------------------------------------- /tests/isa/bg/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/bg/main.c -------------------------------------------------------------------------------- /tests/isa/bg/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/bg/rules.mk -------------------------------------------------------------------------------- /tests/isa/bge/bge.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/bge/bge.s -------------------------------------------------------------------------------- /tests/isa/bge/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/bge/main.c -------------------------------------------------------------------------------- /tests/isa/bge/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/bge/rules.mk -------------------------------------------------------------------------------- /tests/isa/bgu/bgu.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/bgu/bgu.s -------------------------------------------------------------------------------- /tests/isa/bgu/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/bgu/main.c -------------------------------------------------------------------------------- /tests/isa/bgu/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/bgu/rules.mk -------------------------------------------------------------------------------- /tests/isa/bl/bl.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/bl/bl.s -------------------------------------------------------------------------------- /tests/isa/bl/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/bl/main.c -------------------------------------------------------------------------------- /tests/isa/bl/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/bl/rules.mk -------------------------------------------------------------------------------- /tests/isa/ble/ble.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/ble/ble.s -------------------------------------------------------------------------------- /tests/isa/ble/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/ble/main.c -------------------------------------------------------------------------------- /tests/isa/ble/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/ble/rules.mk -------------------------------------------------------------------------------- /tests/isa/bleu/bleu.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/bleu/bleu.s -------------------------------------------------------------------------------- /tests/isa/bleu/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/bleu/main.c -------------------------------------------------------------------------------- /tests/isa/bleu/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/bleu/rules.mk -------------------------------------------------------------------------------- /tests/isa/bn/bn.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/bn/bn.s -------------------------------------------------------------------------------- /tests/isa/bn/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/bn/main.c -------------------------------------------------------------------------------- /tests/isa/bn/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/bn/rules.mk -------------------------------------------------------------------------------- /tests/isa/bne/bne.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/bne/bne.s -------------------------------------------------------------------------------- /tests/isa/bne/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/bne/main.c -------------------------------------------------------------------------------- /tests/isa/bne/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/bne/rules.mk -------------------------------------------------------------------------------- /tests/isa/bneg/bneg.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/bneg/bneg.s -------------------------------------------------------------------------------- /tests/isa/bneg/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/bneg/main.c -------------------------------------------------------------------------------- /tests/isa/bneg/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/bneg/rules.mk -------------------------------------------------------------------------------- /tests/isa/bpos/bpos.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/bpos/bpos.s -------------------------------------------------------------------------------- /tests/isa/bpos/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/bpos/main.c -------------------------------------------------------------------------------- /tests/isa/bpos/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/bpos/rules.mk -------------------------------------------------------------------------------- /tests/isa/bvc/bvc.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/bvc/bvc.s -------------------------------------------------------------------------------- /tests/isa/bvc/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/bvc/main.c -------------------------------------------------------------------------------- /tests/isa/bvc/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/bvc/rules.mk -------------------------------------------------------------------------------- /tests/isa/bvs/bvs.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/bvs/bvs.s -------------------------------------------------------------------------------- /tests/isa/bvs/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/bvs/main.c -------------------------------------------------------------------------------- /tests/isa/bvs/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/bvs/rules.mk -------------------------------------------------------------------------------- /tests/isa/call/call.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/call/call.s -------------------------------------------------------------------------------- /tests/isa/call/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/call/main.c -------------------------------------------------------------------------------- /tests/isa/call/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/call/rules.mk -------------------------------------------------------------------------------- /tests/isa/flush/flush.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/flush/flush.s -------------------------------------------------------------------------------- /tests/isa/flush/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/flush/main.c -------------------------------------------------------------------------------- /tests/isa/flush/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/flush/rules.mk -------------------------------------------------------------------------------- /tests/isa/g0/g0.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/g0/g0.s -------------------------------------------------------------------------------- /tests/isa/g0/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/g0/main.c -------------------------------------------------------------------------------- /tests/isa/g0/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/g0/rules.mk -------------------------------------------------------------------------------- /tests/isa/jmpl/jmpl.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/jmpl/jmpl.s -------------------------------------------------------------------------------- /tests/isa/jmpl/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/jmpl/main.c -------------------------------------------------------------------------------- /tests/isa/jmpl/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/jmpl/rules.mk -------------------------------------------------------------------------------- /tests/isa/ld/ld.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/ld/ld.s -------------------------------------------------------------------------------- /tests/isa/ld/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/ld/main.c -------------------------------------------------------------------------------- /tests/isa/ld/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/ld/rules.mk -------------------------------------------------------------------------------- /tests/isa/lda/lda.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/lda/lda.s -------------------------------------------------------------------------------- /tests/isa/lda/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/lda/main.c -------------------------------------------------------------------------------- /tests/isa/lda/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/lda/rules.mk -------------------------------------------------------------------------------- /tests/isa/ldd/ldd.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/ldd/ldd.s -------------------------------------------------------------------------------- /tests/isa/ldd/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/ldd/main.c -------------------------------------------------------------------------------- /tests/isa/ldd/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/ldd/rules.mk -------------------------------------------------------------------------------- /tests/isa/ldda/ldda.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/ldda/ldda.s -------------------------------------------------------------------------------- /tests/isa/ldda/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/ldda/main.c -------------------------------------------------------------------------------- /tests/isa/ldda/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/ldda/rules.mk -------------------------------------------------------------------------------- /tests/isa/ldsb/ldsb.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/ldsb/ldsb.s -------------------------------------------------------------------------------- /tests/isa/ldsb/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/ldsb/main.c -------------------------------------------------------------------------------- /tests/isa/ldsb/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/ldsb/rules.mk -------------------------------------------------------------------------------- /tests/isa/ldsba/ldsba.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/ldsba/ldsba.s -------------------------------------------------------------------------------- /tests/isa/ldsba/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/ldsba/main.c -------------------------------------------------------------------------------- /tests/isa/ldsba/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/ldsba/rules.mk -------------------------------------------------------------------------------- /tests/isa/ldsh/ldsh.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/ldsh/ldsh.s -------------------------------------------------------------------------------- /tests/isa/ldsh/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/ldsh/main.c -------------------------------------------------------------------------------- /tests/isa/ldsh/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/ldsh/rules.mk -------------------------------------------------------------------------------- /tests/isa/ldsha/ldsha.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/ldsha/ldsha.s -------------------------------------------------------------------------------- /tests/isa/ldsha/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/ldsha/main.c -------------------------------------------------------------------------------- /tests/isa/ldsha/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/ldsha/rules.mk -------------------------------------------------------------------------------- /tests/isa/ldstub/ldstub.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/ldstub/ldstub.s -------------------------------------------------------------------------------- /tests/isa/ldstub/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/ldstub/main.c -------------------------------------------------------------------------------- /tests/isa/ldstub/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/ldstub/rules.mk -------------------------------------------------------------------------------- /tests/isa/ldstuba/ldstuba.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/ldstuba/ldstuba.s -------------------------------------------------------------------------------- /tests/isa/ldstuba/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/ldstuba/main.c -------------------------------------------------------------------------------- /tests/isa/ldstuba/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/ldstuba/rules.mk -------------------------------------------------------------------------------- /tests/isa/ldub/ldub.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/ldub/ldub.s -------------------------------------------------------------------------------- /tests/isa/ldub/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/ldub/main.c -------------------------------------------------------------------------------- /tests/isa/ldub/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/ldub/rules.mk -------------------------------------------------------------------------------- /tests/isa/lduba/lduba.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/lduba/lduba.s -------------------------------------------------------------------------------- /tests/isa/lduba/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/lduba/main.c -------------------------------------------------------------------------------- /tests/isa/lduba/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/lduba/rules.mk -------------------------------------------------------------------------------- /tests/isa/lduh/lduh.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/lduh/lduh.s -------------------------------------------------------------------------------- /tests/isa/lduh/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/lduh/main.c -------------------------------------------------------------------------------- /tests/isa/lduh/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/lduh/rules.mk -------------------------------------------------------------------------------- /tests/isa/lduha/lduha.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/lduha/lduha.s -------------------------------------------------------------------------------- /tests/isa/lduha/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/lduha/main.c -------------------------------------------------------------------------------- /tests/isa/lduha/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/lduha/rules.mk -------------------------------------------------------------------------------- /tests/isa/mulscc/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/mulscc/main.c -------------------------------------------------------------------------------- /tests/isa/mulscc/mulscc.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/mulscc/mulscc.s -------------------------------------------------------------------------------- /tests/isa/mulscc/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/mulscc/rules.mk -------------------------------------------------------------------------------- /tests/isa/or/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/or/main.c -------------------------------------------------------------------------------- /tests/isa/or/or.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/or/or.s -------------------------------------------------------------------------------- /tests/isa/or/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/or/rules.mk -------------------------------------------------------------------------------- /tests/isa/orcc/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/orcc/main.c -------------------------------------------------------------------------------- /tests/isa/orcc/orcc.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/orcc/orcc.s -------------------------------------------------------------------------------- /tests/isa/orcc/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/orcc/rules.mk -------------------------------------------------------------------------------- /tests/isa/orn/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/orn/main.c -------------------------------------------------------------------------------- /tests/isa/orn/orn.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/orn/orn.s -------------------------------------------------------------------------------- /tests/isa/orn/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/orn/rules.mk -------------------------------------------------------------------------------- /tests/isa/orncc/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/orncc/main.c -------------------------------------------------------------------------------- /tests/isa/orncc/orncc.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/orncc/orncc.s -------------------------------------------------------------------------------- /tests/isa/orncc/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/orncc/rules.mk -------------------------------------------------------------------------------- /tests/isa/rdasr/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/rdasr/main.c -------------------------------------------------------------------------------- /tests/isa/rdasr/rdasr.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/rdasr/rdasr.s -------------------------------------------------------------------------------- /tests/isa/rdasr/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/rdasr/rules.mk -------------------------------------------------------------------------------- /tests/isa/rdpsr/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/rdpsr/main.c -------------------------------------------------------------------------------- /tests/isa/rdpsr/rdpsr.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/rdpsr/rdpsr.s -------------------------------------------------------------------------------- /tests/isa/rdpsr/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/rdpsr/rules.mk -------------------------------------------------------------------------------- /tests/isa/rdtbr/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/rdtbr/main.c -------------------------------------------------------------------------------- /tests/isa/rdtbr/rdtbr.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/rdtbr/rdtbr.s -------------------------------------------------------------------------------- /tests/isa/rdtbr/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/rdtbr/rules.mk -------------------------------------------------------------------------------- /tests/isa/rdwim/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/rdwim/main.c -------------------------------------------------------------------------------- /tests/isa/rdwim/rdwim.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/rdwim/rdwim.s -------------------------------------------------------------------------------- /tests/isa/rdwim/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/rdwim/rules.mk -------------------------------------------------------------------------------- /tests/isa/rett/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/rett/main.c -------------------------------------------------------------------------------- /tests/isa/rett/rett.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/rett/rett.s -------------------------------------------------------------------------------- /tests/isa/rett/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/rett/rules.mk -------------------------------------------------------------------------------- /tests/isa/save-restore/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/save-restore/main.c -------------------------------------------------------------------------------- /tests/isa/save-restore/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/save-restore/rules.mk -------------------------------------------------------------------------------- /tests/isa/save-restore/save-restore.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/save-restore/save-restore.s -------------------------------------------------------------------------------- /tests/isa/sdiv/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/sdiv/main.c -------------------------------------------------------------------------------- /tests/isa/sdiv/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/sdiv/rules.mk -------------------------------------------------------------------------------- /tests/isa/sdiv/sdiv.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/sdiv/sdiv.s -------------------------------------------------------------------------------- /tests/isa/sdivcc/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/sdivcc/main.c -------------------------------------------------------------------------------- /tests/isa/sdivcc/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/sdivcc/rules.mk -------------------------------------------------------------------------------- /tests/isa/sdivcc/sdivcc.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/sdivcc/sdivcc.s -------------------------------------------------------------------------------- /tests/isa/sethi/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/sethi/main.c -------------------------------------------------------------------------------- /tests/isa/sethi/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/sethi/rules.mk -------------------------------------------------------------------------------- /tests/isa/sethi/sethi.s: -------------------------------------------------------------------------------- 1 | .section .text, "ax", @progbits 2 | 3 | tmain: 4 | sethi %hi(0x3000), %g2 5 | -------------------------------------------------------------------------------- /tests/isa/sll/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/sll/main.c -------------------------------------------------------------------------------- /tests/isa/sll/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/sll/rules.mk -------------------------------------------------------------------------------- /tests/isa/sll/sll.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/sll/sll.s -------------------------------------------------------------------------------- /tests/isa/smul/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/smul/main.c -------------------------------------------------------------------------------- /tests/isa/smul/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/smul/rules.mk -------------------------------------------------------------------------------- /tests/isa/smul/smul.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/smul/smul.s -------------------------------------------------------------------------------- /tests/isa/smulcc/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/smulcc/main.c -------------------------------------------------------------------------------- /tests/isa/smulcc/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/smulcc/rules.mk -------------------------------------------------------------------------------- /tests/isa/smulcc/smulcc.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/smulcc/smulcc.s -------------------------------------------------------------------------------- /tests/isa/sra/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/sra/main.c -------------------------------------------------------------------------------- /tests/isa/sra/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/sra/rules.mk -------------------------------------------------------------------------------- /tests/isa/sra/sra.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/sra/sra.s -------------------------------------------------------------------------------- /tests/isa/srl/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/srl/main.c -------------------------------------------------------------------------------- /tests/isa/srl/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/srl/rules.mk -------------------------------------------------------------------------------- /tests/isa/srl/srl.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/srl/srl.s -------------------------------------------------------------------------------- /tests/isa/st/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/st/main.c -------------------------------------------------------------------------------- /tests/isa/st/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/st/rules.mk -------------------------------------------------------------------------------- /tests/isa/st/st.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/st/st.s -------------------------------------------------------------------------------- /tests/isa/sta/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/sta/main.c -------------------------------------------------------------------------------- /tests/isa/sta/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/sta/rules.mk -------------------------------------------------------------------------------- /tests/isa/sta/sta.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/sta/sta.s -------------------------------------------------------------------------------- /tests/isa/stb/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/stb/main.c -------------------------------------------------------------------------------- /tests/isa/stb/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/stb/rules.mk -------------------------------------------------------------------------------- /tests/isa/stb/stb.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/stb/stb.s -------------------------------------------------------------------------------- /tests/isa/stba/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/stba/main.c -------------------------------------------------------------------------------- /tests/isa/stba/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/stba/rules.mk -------------------------------------------------------------------------------- /tests/isa/stba/stba.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/stba/stba.s -------------------------------------------------------------------------------- /tests/isa/stbar/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/stbar/main.c -------------------------------------------------------------------------------- /tests/isa/stbar/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/stbar/rules.mk -------------------------------------------------------------------------------- /tests/isa/stbar/stbar.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/stbar/stbar.s -------------------------------------------------------------------------------- /tests/isa/std/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/std/main.c -------------------------------------------------------------------------------- /tests/isa/std/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/std/rules.mk -------------------------------------------------------------------------------- /tests/isa/std/std.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/std/std.s -------------------------------------------------------------------------------- /tests/isa/stda/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/stda/main.c -------------------------------------------------------------------------------- /tests/isa/stda/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/stda/rules.mk -------------------------------------------------------------------------------- /tests/isa/stda/stda.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/stda/stda.s -------------------------------------------------------------------------------- /tests/isa/sth/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/sth/main.c -------------------------------------------------------------------------------- /tests/isa/sth/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/sth/rules.mk -------------------------------------------------------------------------------- /tests/isa/sth/sth.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/sth/sth.s -------------------------------------------------------------------------------- /tests/isa/stha/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/stha/main.c -------------------------------------------------------------------------------- /tests/isa/stha/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/stha/rules.mk -------------------------------------------------------------------------------- /tests/isa/stha/stha.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/stha/stha.s -------------------------------------------------------------------------------- /tests/isa/sub/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/sub/main.c -------------------------------------------------------------------------------- /tests/isa/sub/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/sub/rules.mk -------------------------------------------------------------------------------- /tests/isa/sub/sub.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/sub/sub.s -------------------------------------------------------------------------------- /tests/isa/subcc/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/subcc/main.c -------------------------------------------------------------------------------- /tests/isa/subcc/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/subcc/rules.mk -------------------------------------------------------------------------------- /tests/isa/subcc/subcc.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/subcc/subcc.s -------------------------------------------------------------------------------- /tests/isa/subx/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/subx/main.c -------------------------------------------------------------------------------- /tests/isa/subx/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/subx/rules.mk -------------------------------------------------------------------------------- /tests/isa/subx/subx.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/subx/subx.s -------------------------------------------------------------------------------- /tests/isa/subxcc/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/subxcc/main.c -------------------------------------------------------------------------------- /tests/isa/subxcc/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/subxcc/rules.mk -------------------------------------------------------------------------------- /tests/isa/subxcc/subxcc.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/subxcc/subxcc.s -------------------------------------------------------------------------------- /tests/isa/swap/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/swap/main.c -------------------------------------------------------------------------------- /tests/isa/swap/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/swap/rules.mk -------------------------------------------------------------------------------- /tests/isa/swap/swap.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/swap/swap.s -------------------------------------------------------------------------------- /tests/isa/swapa/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/swapa/main.c -------------------------------------------------------------------------------- /tests/isa/swapa/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/swapa/rules.mk -------------------------------------------------------------------------------- /tests/isa/swapa/swapa.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/swapa/swapa.s -------------------------------------------------------------------------------- /tests/isa/ta/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/ta/main.c -------------------------------------------------------------------------------- /tests/isa/ta/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/ta/rules.mk -------------------------------------------------------------------------------- /tests/isa/ta/ta.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/ta/ta.s -------------------------------------------------------------------------------- /tests/isa/taddcc/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/taddcc/main.c -------------------------------------------------------------------------------- /tests/isa/taddcc/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/taddcc/rules.mk -------------------------------------------------------------------------------- /tests/isa/taddcc/taddcc.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/taddcc/taddcc.s -------------------------------------------------------------------------------- /tests/isa/taddcctv/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/taddcctv/main.c -------------------------------------------------------------------------------- /tests/isa/taddcctv/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/taddcctv/rules.mk -------------------------------------------------------------------------------- /tests/isa/taddcctv/taddcctv.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/taddcctv/taddcctv.s -------------------------------------------------------------------------------- /tests/isa/tcc/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/tcc/main.c -------------------------------------------------------------------------------- /tests/isa/tcc/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/tcc/rules.mk -------------------------------------------------------------------------------- /tests/isa/tcc/tcc.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/tcc/tcc.s -------------------------------------------------------------------------------- /tests/isa/tcs/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/tcs/main.c -------------------------------------------------------------------------------- /tests/isa/tcs/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/tcs/rules.mk -------------------------------------------------------------------------------- /tests/isa/tcs/tcs.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/tcs/tcs.s -------------------------------------------------------------------------------- /tests/isa/te/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/te/main.c -------------------------------------------------------------------------------- /tests/isa/te/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/te/rules.mk -------------------------------------------------------------------------------- /tests/isa/te/te.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/te/te.s -------------------------------------------------------------------------------- /tests/isa/tg/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/tg/main.c -------------------------------------------------------------------------------- /tests/isa/tg/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/tg/rules.mk -------------------------------------------------------------------------------- /tests/isa/tg/tg.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/tg/tg.s -------------------------------------------------------------------------------- /tests/isa/tge/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/tge/main.c -------------------------------------------------------------------------------- /tests/isa/tge/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/tge/rules.mk -------------------------------------------------------------------------------- /tests/isa/tge/tge.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/tge/tge.s -------------------------------------------------------------------------------- /tests/isa/tgu/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/tgu/main.c -------------------------------------------------------------------------------- /tests/isa/tgu/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/tgu/rules.mk -------------------------------------------------------------------------------- /tests/isa/tgu/tgu.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/tgu/tgu.s -------------------------------------------------------------------------------- /tests/isa/tl/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/tl/main.c -------------------------------------------------------------------------------- /tests/isa/tl/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/tl/rules.mk -------------------------------------------------------------------------------- /tests/isa/tl/tl.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/tl/tl.s -------------------------------------------------------------------------------- /tests/isa/tle/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/tle/main.c -------------------------------------------------------------------------------- /tests/isa/tle/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/tle/rules.mk -------------------------------------------------------------------------------- /tests/isa/tle/tle.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/tle/tle.s -------------------------------------------------------------------------------- /tests/isa/tleu/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/tleu/main.c -------------------------------------------------------------------------------- /tests/isa/tleu/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/tleu/rules.mk -------------------------------------------------------------------------------- /tests/isa/tleu/tleu.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/tleu/tleu.s -------------------------------------------------------------------------------- /tests/isa/tn/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/tn/main.c -------------------------------------------------------------------------------- /tests/isa/tn/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/tn/rules.mk -------------------------------------------------------------------------------- /tests/isa/tn/tn.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/tn/tn.s -------------------------------------------------------------------------------- /tests/isa/tne/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/tne/main.c -------------------------------------------------------------------------------- /tests/isa/tne/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/tne/rules.mk -------------------------------------------------------------------------------- /tests/isa/tne/tne.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/tne/tne.s -------------------------------------------------------------------------------- /tests/isa/tneg/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/tneg/main.c -------------------------------------------------------------------------------- /tests/isa/tneg/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/tneg/rules.mk -------------------------------------------------------------------------------- /tests/isa/tneg/tneg.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/tneg/tneg.s -------------------------------------------------------------------------------- /tests/isa/tpos/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/tpos/main.c -------------------------------------------------------------------------------- /tests/isa/tpos/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/tpos/rules.mk -------------------------------------------------------------------------------- /tests/isa/tpos/tpos.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/tpos/tpos.s -------------------------------------------------------------------------------- /tests/isa/tsubcc/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/tsubcc/main.c -------------------------------------------------------------------------------- /tests/isa/tsubcc/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/tsubcc/rules.mk -------------------------------------------------------------------------------- /tests/isa/tsubcc/tsubcc.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/tsubcc/tsubcc.s -------------------------------------------------------------------------------- /tests/isa/tsubcctv/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/tsubcctv/main.c -------------------------------------------------------------------------------- /tests/isa/tsubcctv/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/tsubcctv/rules.mk -------------------------------------------------------------------------------- /tests/isa/tsubcctv/tsubcctv.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/tsubcctv/tsubcctv.s -------------------------------------------------------------------------------- /tests/isa/tvc/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/tvc/main.c -------------------------------------------------------------------------------- /tests/isa/tvc/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/tvc/rules.mk -------------------------------------------------------------------------------- /tests/isa/tvc/tvc.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/tvc/tvc.s -------------------------------------------------------------------------------- /tests/isa/tvs/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/tvs/main.c -------------------------------------------------------------------------------- /tests/isa/tvs/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/tvs/rules.mk -------------------------------------------------------------------------------- /tests/isa/tvs/tvs.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/tvs/tvs.s -------------------------------------------------------------------------------- /tests/isa/udiv/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/udiv/main.c -------------------------------------------------------------------------------- /tests/isa/udiv/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/udiv/rules.mk -------------------------------------------------------------------------------- /tests/isa/udiv/udiv.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/udiv/udiv.s -------------------------------------------------------------------------------- /tests/isa/udivcc/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/udivcc/main.c -------------------------------------------------------------------------------- /tests/isa/udivcc/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/udivcc/rules.mk -------------------------------------------------------------------------------- /tests/isa/udivcc/udivcc.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/udivcc/udivcc.s -------------------------------------------------------------------------------- /tests/isa/umul/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/umul/main.c -------------------------------------------------------------------------------- /tests/isa/umul/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/umul/rules.mk -------------------------------------------------------------------------------- /tests/isa/umul/umul.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/umul/umul.s -------------------------------------------------------------------------------- /tests/isa/umulcc/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/umulcc/main.c -------------------------------------------------------------------------------- /tests/isa/umulcc/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/umulcc/rules.mk -------------------------------------------------------------------------------- /tests/isa/umulcc/umulcc.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/umulcc/umulcc.s -------------------------------------------------------------------------------- /tests/isa/unimp/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/unimp/main.c -------------------------------------------------------------------------------- /tests/isa/unimp/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/unimp/rules.mk -------------------------------------------------------------------------------- /tests/isa/unimp/unimp.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/unimp/unimp.s -------------------------------------------------------------------------------- /tests/isa/wrasr/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/wrasr/main.c -------------------------------------------------------------------------------- /tests/isa/wrasr/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/wrasr/rules.mk -------------------------------------------------------------------------------- /tests/isa/wrasr/wrasr.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/wrasr/wrasr.s -------------------------------------------------------------------------------- /tests/isa/wrpsr/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/wrpsr/main.c -------------------------------------------------------------------------------- /tests/isa/wrpsr/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/wrpsr/rules.mk -------------------------------------------------------------------------------- /tests/isa/wrpsr/wrpsr.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/wrpsr/wrpsr.s -------------------------------------------------------------------------------- /tests/isa/wrtbr/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/wrtbr/main.c -------------------------------------------------------------------------------- /tests/isa/wrtbr/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/wrtbr/rules.mk -------------------------------------------------------------------------------- /tests/isa/wrtbr/wrtbr.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/wrtbr/wrtbr.s -------------------------------------------------------------------------------- /tests/isa/wrwim/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/wrwim/main.c -------------------------------------------------------------------------------- /tests/isa/wrwim/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/wrwim/rules.mk -------------------------------------------------------------------------------- /tests/isa/wrwim/wrwim.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/wrwim/wrwim.s -------------------------------------------------------------------------------- /tests/isa/xnor/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/xnor/main.c -------------------------------------------------------------------------------- /tests/isa/xnor/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/xnor/rules.mk -------------------------------------------------------------------------------- /tests/isa/xnor/xnor.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/xnor/xnor.s -------------------------------------------------------------------------------- /tests/isa/xnorcc/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/xnorcc/main.c -------------------------------------------------------------------------------- /tests/isa/xnorcc/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/xnorcc/rules.mk -------------------------------------------------------------------------------- /tests/isa/xnorcc/xnorcc.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/xnorcc/xnorcc.s -------------------------------------------------------------------------------- /tests/isa/xor/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/xor/main.c -------------------------------------------------------------------------------- /tests/isa/xor/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/xor/rules.mk -------------------------------------------------------------------------------- /tests/isa/xor/xor.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/xor/xor.s -------------------------------------------------------------------------------- /tests/isa/xorcc/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/xorcc/main.c -------------------------------------------------------------------------------- /tests/isa/xorcc/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/xorcc/rules.mk -------------------------------------------------------------------------------- /tests/isa/xorcc/xorcc.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/isa/xorcc/xorcc.s -------------------------------------------------------------------------------- /tests/mmu/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/mmu/main.c -------------------------------------------------------------------------------- /tests/mmu/mmu.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/mmu/mmu.s -------------------------------------------------------------------------------- /tests/mmu/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/mmu/rules.mk -------------------------------------------------------------------------------- /tests/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/rules.mk -------------------------------------------------------------------------------- /tests/sparc.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/sparc.ld -------------------------------------------------------------------------------- /tests/test-utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/test-utils.c -------------------------------------------------------------------------------- /tests/test-utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/test-utils.h -------------------------------------------------------------------------------- /tests/tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repk/sporc/HEAD/tests/tests.sh --------------------------------------------------------------------------------