Skip to content

Commit

Permalink
Merge pull request #6 from vm6502q/removing_ehx
Browse files Browse the repository at this point in the history
Fixing examples, removing 'EHX'
  • Loading branch information
WrathfulSpatula authored Mar 31, 2018
2 parents f23888c + 55a8f26 commit b07053c
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 74 deletions.
1 change: 0 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@

all :
${MAKE} -C hello_c
${MAKE} -C grover_lookup_asm
${MAKE} -C prototype
${MAKE} -C grover_asm

Expand Down
24 changes: 12 additions & 12 deletions grover_asm/grover_asm.s
Original file line number Diff line number Diff line change
Expand Up @@ -3,27 +3,27 @@
; perform Grover's search on $0f00 to $0fff
; store result in $0bff
;
GINIT: clq
ldy #$08
GINIT: clq
ldy #$0c
lda #$00
adc #$00 ;clear flags
seq
cln
clv
haa
GITER: seq
GITER: seq
sez
clc
cmp #$64
haa
qzz
haa
clz
haa
clq
dey
clq
dey
bne GITER
cmp #$64
bne GINIT
sta $0bff
stx $0bff
brk

; < $1f $a0 $0c $a9 $00 $69 $00 $02 $3f $2b $18 $c9 $64 $02 $f7 $47
; > $02 $1f $88 $d0 $f3 $c9 $64 $d0 $e7 $81 $ff $0b $00
; < $02 $1f $88 $d0 $f3 $c9 $64 $d0 $e7 $8d $ff $0b $00 $00 $00 $00
; > $1f $a0 $0c $a9 $00 $3f $2f $b8 $02 $3f $2b $c9 $64 $f7 $02 $47
; < $02 $1f $88 $d0 $f4 $c9 $64 $d0 $e7 $8e $ff $0b $00
7 changes: 0 additions & 7 deletions grover_lookup_asm/Makefile

This file was deleted.

16 changes: 0 additions & 16 deletions grover_lookup_asm/grover_lookup_asm.cfg

This file was deleted.

38 changes: 0 additions & 38 deletions grover_lookup_asm/grover_lookup_asm.s

This file was deleted.

0 comments on commit b07053c

Please sign in to comment.