Kernel 0.93

This commit is contained in:
Rémy GIBERT 2019-05-21 08:34:39 +02:00
parent 60ec94b89e
commit 07f290a1b7
3 changed files with 9 additions and 9 deletions

Binary file not shown.

View File

@ -195,22 +195,20 @@ INCOMING sta hFrameIn
ldy #S.ETH.EII.TYPE ldy #S.ETH.EII.TYPE
lda (ZPFrameInPtr),y lda (ZPFrameInPtr),y
tax cmp /S.ETH.EII.TYPE.IP
bne .9
iny iny
lda (ZPFrameInPtr),y lda (ZPFrameInPtr),y
cmp #S.ETH.EII.TYPE.ARP cmp #S.ETH.EII.TYPE.ARP
bne .2 bne .2
cpx /S.ETH.EII.TYPE.ARP
bne .2
jmp ARP.IN jmp ARP.IN
.2 cmp #S.ETH.EII.TYPE.IP .2 cmp #S.ETH.EII.TYPE.IP
bne .9 bne .9
cpx /S.ETH.EII.TYPE.IP
bne .9
jmp IP.IN jmp IP.IN
.9 sec .9 sec

View File

@ -225,7 +225,7 @@ CS.RUN >PUSHW L.IOCTL
ldx #0 ldx #0
.1 ldy hLIBs,x .1 ldy hLIBs,x
beq .7 beq .2
>PUSHW L.IOCTL >PUSHW L.IOCTL
lda hFrameIn lda hFrameIn
@ -234,14 +234,16 @@ CS.RUN >PUSHW L.IOCTL
ldx #LIBNET.INCOMING ldx #LIBNET.INCOMING
jsr A2osX.LIBCALL jsr A2osX.LIBCALL
plx plx
bcc .8 bcc CS.RUN
inx inx
bra .1 bra .1
.7 lda hFrameIn .2 lda hFrameIn
>SYSCALL freemem >SYSCALL freemem
bra CS.RUN
.8 clc .8 clc
rts rts
*-------------------------------------- *--------------------------------------