From 5114db69dbd1798554979d151995b98f1f334d10 Mon Sep 17 00:00:00 2001 From: Leo Date: Wed, 28 Jul 2010 21:15:20 +0000 Subject: [PATCH] * avr/z80.asm: - Order of tests changed. git-svn-id: svn://cu.loc/avr-cpm/trunk/avrcpm/avr@61 57430480-672e-4586-8877-bcf8adbbf3b7 --- z80.asm | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/z80.asm b/z80.asm index e61fc13..64f0786 100644 --- a/z80.asm +++ b/z80.asm @@ -378,11 +378,6 @@ clr_l: .db "CPM on an AVR, v1.0",13,0,0 - rcall printstr - .db "Initing mmc...",13,0 - rcall mmcInit - - .if MEMTEST rcall printstr .db "Testing RAM: fill...",0,0 @@ -450,10 +445,13 @@ ramfillw: .endif + rcall printstr + .db "Initing mmc...",13,0 + rcall mmcInit ;---------------------------------------------------------------------------- -; Offsets: +; Partition table offsets: #define PART_TYPE 4 #define PART_START 8 #define PART_SIZE 12 -- 2.39.2