File: strchr.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 (52 lines) | stat: -rw-r--r-- 1,226 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
;
; Ullrich von Bassewitz, 31.05.1998
; Christian Krueger, 2013-Aug-04, minor optimization
;
; const char* strchr (const char* s, int c);
;

        .export         _strchr
        .import         popax
        .importzp       ptr1, tmp1
        .macpack        cpu

_strchr:
        sta tmp1        ; Save c
        jsr popax       ; get s
        tay             ; low byte of pointer to y
        stx ptr1+1
.if (.cpu .bitand ::CPU_ISET_65SC02)
        stz ptr1
.else
        lda #0
        sta ptr1        ; access from page start, y contains low byte
.endif

Loop:   lda (ptr1),y    ; Get next char
        beq EOS         ; Jump on end of string
        cmp tmp1        ; Found?
        beq Found       ; Jump if yes
        iny
        bne Loop
        inc ptr1+1
        bne Loop        ; Branch always

; End of string. Check if we're searching for the terminating zero

EOS:
        lda tmp1        ; Get the char we're searching for
        bne NotFound    ; Jump if not searching for terminator

; Found. Set pointer to c.

Found:
        ldx ptr1+1      ; Load high byte of pointer
        tya             ; low byte is in y
        rts

; Not found, return NULL

NotFound:
        lda #0
        tax
        rts