bugfix from ShadowM - DHCP Request messages should be broadcast

git-svn-id: http://svn.code.sf.net/p/netboot65/code@166 93682198-c243-4bdb-bd91-e943c89aac3b
This commit is contained in:
jonnosan 2009-07-29 10:32:59 +00:00
parent b9fbe37019
commit 9f811d4f3e

View File

@ -452,10 +452,15 @@ send_dhcprequest:
: lda dhcp_server,x
sta output_buffer+dhcp_options+11,x
sta udp_send_dest,x
dex
bpl :-
;bugfix by ShadowM - DHCP request should be broadcast
lda #$ff
ldx #3
: sta udp_send_dest,x
dex
bpl :-
lda #$FF ;option FF = end of options
sta output_buffer+dhcp_options+17