From eb169ea5a89909b90794e0388f89d6d372754e46 Mon Sep 17 00:00:00 2001 From: Nao Pross Date: Thu, 5 Oct 2017 16:09:59 +0200 Subject: Move test units to z80/tests, and drivers are now statically linked Makefiles for the test units were getting messier, so now drivers (that need to be tested) are statically compiled in their own folder under z80/drivers. The kernel makefile and is now broken since everything has been moved. --- sw/z80_tests/ram/crt0.s | 54 ------------------------------------------------- 1 file changed, 54 deletions(-) delete mode 100644 sw/z80_tests/ram/crt0.s (limited to 'sw/z80_tests/ram/crt0.s') diff --git a/sw/z80_tests/ram/crt0.s b/sw/z80_tests/ram/crt0.s deleted file mode 100644 index ac0698f..0000000 --- a/sw/z80_tests/ram/crt0.s +++ /dev/null @@ -1,54 +0,0 @@ - .module crt0 - .globl _main - - .area _HEADER (ABS) - ;; Reset vector - .org 0 - jp init - - .org 0x08 - reti - .org 0x10 - reti - .org 0x18 - reti - .org 0x20 - reti - .org 0x28 - reti - .org 0x30 - reti - .org 0x38 - reti - .org 0x66 - ld hl,#BEEF - reti - - .org 0x100 -init: - ;; Set stack pointer directly above top of memory. - ld sp,#0xFFFF - - ;; Start of the program - call _main - jp _exit - - ;; Ordering of segments for the linker. - .area _HOME - .area _CODE - .area _INITIALIZER - .area _GSINIT - .area _GSFINAL - - .area _DATA - .area _INITIALIZED - .area _BSEG - .area _BSS - .area _HEAP - - .area _CODE - -_exit:: -1$: - halt - jr 1$ -- cgit v1.2.1