]> git.sur5r.net Git - cc65/blob - libsrc/common/sigtable.s
Merge pull request #310 from groessler/atari-exec-devel
[cc65] / libsrc / common / sigtable.s
1 ;
2 ; Ullrich von Bassewitz, 2002-12-16
3 ;
4 ; Signal vector table
5 ;
6
7         .export         sigtable
8
9         .include        "signal.inc"
10
11 ;----------------------------------------------------------------------------
12 ;
13
14 .data
15
16 sigtable:
17         .word   __sig_dfl       ; SIGABRT
18         .word   __sig_dfl       ; SIGFPE
19         .word   __sig_dfl       ; SIGILL
20         .word   __sig_dfl       ; SIGINT
21         .word   __sig_dfl       ; SIGSEGV
22         .word   __sig_dfl       ; SIGTERM
23
24