From 1f32337a545de1dcdab4be620d8a4ca1572789a6 Mon Sep 17 00:00:00 2001 From: Alan Cox Date: Sat, 5 Jan 2019 21:59:15 +0000 Subject: [PATCH] filo: move constants to right file --- Kernel/filo/filo.s | 10 ++++++++++ Kernel/platform-sc114/loader.s | 10 ---------- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/Kernel/filo/filo.s b/Kernel/filo/filo.s index 970474e6..a4c1a93b 100644 --- a/Kernel/filo/filo.s +++ b/Kernel/filo/filo.s @@ -1,3 +1,13 @@ + +I_ADDR .equ 0x18 +I_SIZE .equ 0x08 +I_TYPE .equ 0x00 + +loadbuf .equ 0x0100 + +DIRTYPE .equ 0x40 +FILETYPE .equ 0x80 + ; ; The main loop. We wait for about 2 seconds looking for input. If we ; see input then we go to command line mode, if not we load the diff --git a/Kernel/platform-sc114/loader.s b/Kernel/platform-sc114/loader.s index 336c6a7c..d6002ccd 100644 --- a/Kernel/platform-sc114/loader.s +++ b/Kernel/platform-sc114/loader.s @@ -5,16 +5,6 @@ ; Currently this and the glue driver code is well under 2 disk blocks. ; Adding partitions should still fit 2 blocks nicely. ; - -I_ADDR .equ 0x18 -I_SIZE .equ 0x08 -I_TYPE .equ 0x00 - -loadbuf .equ 0x0100 - -DIRTYPE .equ 0x40 -FILETYPE .equ 0x80 - .area _CODE ; -- 2.34.1