From 82826cb5aecf5d87016caeb5d87cd5d100f35413 Mon Sep 17 00:00:00 2001 From: "Guillermo J. Rozas" Date: Tue, 20 Oct 1992 15:31:20 +0000 Subject: [PATCH] Initialize only sets internal variables, and exit only clears them. Neither does any screen operations. --- v7/src/microcode/dosint10.c | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/v7/src/microcode/dosint10.c b/v7/src/microcode/dosint10.c index baea2cdba..5e000125c 100644 --- a/v7/src/microcode/dosint10.c +++ b/v7/src/microcode/dosint10.c @@ -1,6 +1,6 @@ /* -*-C-*- -$Id: dosint10.c,v 1.6 1992/10/20 15:07:24 jinx Exp $ +$Id: dosint10.c,v 1.7 1992/10/20 15:31:20 jinx Exp $ Copyright (c) 1992 Massachusetts Institute of Technology @@ -380,8 +380,6 @@ DEFINE_PRIMITIVE ("BIOS:INITIALIZE!", Prim_bios_enter, 2, 2, error_external_return (); bios_initialize_variables ((arg_integer_in_range (1, 30, 38)), (arg_integer_in_range (2, 40, 48))); - bios_clear_screen (); - bios__set_cursor_position (0, 0, display_rows); bios_initialized_p = 1; PRIMITIVE_RETURN (SHARP_T); } @@ -392,7 +390,6 @@ DEFINE_PRIMITIVE ("BIOS:EXIT!", Prim_bios_exit, 0, 0, PRIMITIVE_HEADER (0); if (!bios_initialized_p) error_external_return (); - bios__set_cursor_position (0, 0, display_rows); bios_uninitialize_variables (); bios_initialized_p = 0; PRIMITIVE_RETURN (SHARP_T); -- 2.25.1