File: scanf.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 (74 lines) | stat: -rw-r--r-- 1,792 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
;
; int scanf(const char* Format, ...);
;
; 2000-12-01, Ullrich von Bassewitz
; 2004-12-31, Greg King
;

        .export         _scanf

        .import         _stdin, pushax, addysp, _vfscanf
        .import         sp:zp, ptr1:zp

        .macpack        generic

; ----------------------------------------------------------------------------
; Code
;
_scanf:
        sty     ArgSize         ; Number of argument bytes passed in .Y

; We are using a (hopefully) clever trick here to reduce code size.  On entry,
; the stack pointer points to the last pushed argument of the variable
; argument list.  Adding the number of argument bytes, would result in a
; pointer that points _above_ the Format argument.
; Because we have to push stdin anyway, we will do that here, so:
;
;   * we will save the subtraction of 2 (__fixargs__) later;
;   * we will have the address of the Format argument which needs to
;     be pushed next.

        lda     _stdin
        ldx     _stdin+1
        jsr     pushax

; Now, calculate the va_list pointer, which does point to Format.

        lda     sp
        ldx     sp+1
        add     ArgSize
        bcc     @L1
        inx
@L1:    sta     ptr1
        stx     ptr1+1

; Push a copy of Format.

        ldy     #1
        lda     (ptr1),y
        tax
        dey
        lda     (ptr1),y
        jsr     pushax

; Load va_list [last and __fastcall__ argument to vfscanf()].

        lda     ptr1
        ldx     ptr1+1

; Call vfscanf().

        jsr     _vfscanf

; Clean up the stack.  We will return what we got from vfscanf().

        ldy     ArgSize
        jmp     addysp

; ----------------------------------------------------------------------------
; Data
;
        .bss
ArgSize:
        .res    1               ; Number of argument bytes