From 69e80e9ec5df8c750f2a5bf3deda2715468bd503 Mon Sep 17 00:00:00 2001 From: shikhin Date: Thu, 23 Mar 2023 07:30:30 +0530 Subject: [PATCH] Move file window buffer into bss --- shell.asm | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/shell.asm b/shell.asm index 3339794..e26f31c 100644 --- a/shell.asm +++ b/shell.asm @@ -926,11 +926,12 @@ disk_icon: db 0x00, 0x0f, 0x00, 0x0f, 0x09, 0x0f, 0x00, 0x0f, 0x00, 0x0f db 0x00, 0x0f, 0x00, 0x0f, '|', 0x0f, 0x00, 0x0f, 0x00, 0x0f -file_window: - times ROWS*COLUMNS db 0, 0xf0 - windows: times window.size db 0 times window.size db 0 launch_filename times FS_DIRENT_NAME_SIZE db 0 + +section .bss +file_window: + resw ROWS*COLUMNS