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
lda (ZPFrameInPtr),y
tax
cmp /S.ETH.EII.TYPE.IP
bne .9
iny
lda (ZPFrameInPtr),y
cmp #S.ETH.EII.TYPE.ARP
bne .2
cpx /S.ETH.EII.TYPE.ARP
bne .2
jmp ARP.IN
.2 cmp #S.ETH.EII.TYPE.IP
bne .9
cpx /S.ETH.EII.TYPE.IP
bne .9
jmp IP.IN
.9 sec

View File

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