From 6823ce7c96dc81525f986796e882aca0e35556bc Mon Sep 17 00:00:00 2001 From: ceriel Date: Tue, 30 Jun 1992 11:40:12 +0000 Subject: [PATCH] Added EXIT and BRK entry point --- mach/i386/libsys/head_em.s | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/mach/i386/libsys/head_em.s b/mach/i386/libsys/head_em.s index 6d28f819c..047a23159 100644 --- a/mach/i386/libsys/head_em.s +++ b/mach/i386/libsys/head_em.s @@ -3,6 +3,7 @@ .define begtext,begdata,begbss .define hol0,.reghp,.limhp,.trppc,.ignmask .define ERANGE,ESET,EHEAP,ECASE,EILLINS,EIDIVZ,EODDZ +.define EXIT, BRK ERANGE = 1 ESET = 2 @@ -36,7 +37,12 @@ begtext: push cx call __m_a_i_n push ax +EXIT: call __exit + +BRK: + jmp __brk + .sect .data begdata: hol0: -- 2.34.1