Add signal() and raise()

git-svn-id: svn://svn.cc65.org/cc65/trunk@2017 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
cuz
2003-03-14 00:02:58 +00:00
parent a39db251a2
commit c556f14e66
4 changed files with 139 additions and 0 deletions

24
libsrc/common/sigtable.s Normal file
View File

@@ -0,0 +1,24 @@
;
; Ullrich von Bassewitz, 2002-12-16
;
; Signal vector table
;
.export sigtable
.include "signal.inc"
;----------------------------------------------------------------------------
;
.data
sigtable:
.word __sig_dfl ; SIGABRT
.word __sig_dfl ; SIGFPE
.word __sig_dfl ; SIGILL
.word __sig_dfl ; SIGINT
.word __sig_dfl ; SIGSEGV
.word __sig_dfl ; SIGTERM