mirror of
https://github.com/cc65/cc65.git
synced 2024-11-02 18:06:48 +00:00
c556f14e66
git-svn-id: svn://svn.cc65.org/cc65/trunk@2017 b7a2c559-68d2-44c3-8de9-860c34a00d81
25 lines
486 B
ArmAsm
25 lines
486 B
ArmAsm
;
|
|
; 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
|
|
|
|
|