File: ladd.s

package info (click to toggle)
cc65 2.19-2
  • links: PTS
  • area: main
  • in suites: forky, sid, trixie
  • size: 20,268 kB
  • sloc: ansic: 117,151; asm: 66,339; pascal: 4,248; makefile: 1,009; perl: 607
file content (44 lines) | stat: -rw-r--r-- 942 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
;
; Ullrich von Bassewitz, 05.08.1998
;
; CC65 runtime: long add
;

        .export         tosadd0ax, tosaddeax
        .import         addysp1
        .importzp       sp, sreg, tmp1

        .macpack        cpu

; EAX = TOS + EAX

tosadd0ax:
        ldy     #$00
        sty     sreg
        sty     sreg+1

tosaddeax:
        clc
.if (.cpu .bitand CPU_ISET_65SC02)
        adc     (sp)            ; 65SC02 version - saves 2 cycles
        ldy     #1
.else
        ldy     #0
        adc     (sp),y          ; lo byte
        iny
.endif
        sta     tmp1            ; use as temp storage
        txa
        adc     (sp),y          ; byte 1
        tax
        iny
        lda     sreg
        adc     (sp),y          ; byte 2
        sta     sreg
        iny
        lda     sreg+1
        adc     (sp),y          ; byte 3
        sta     sreg+1
        lda     tmp1            ; load byte 0
        jmp     addysp1         ; drop TOS