git-svn-id: http://svn.code.sf.net/p/netboot65/code@279 93682198-c243-4bdb-bd91-e943c89aac3b

This commit is contained in:
jonnosan 2010-09-12 01:45:07 +00:00
parent 5d7dd674a7
commit 690de6692b
5 changed files with 6 additions and 4 deletions

Binary file not shown.

View File

@ -12,7 +12,6 @@
140 !"</form>"
200 yield
100 !"<h1>hello</h1>"
1000!"<br>hello "+n$+", i'm a c64 running basic on bails."
1010 yield

Binary file not shown.

View File

@ -79,6 +79,7 @@ crunched_line = $0200 ;Input buffer
.import print_cr
.import dhcp_server
.import cfg_mac
.import cfg_mac_default
.import cs_driver_name
.importzp tftp_filename
.import tftp_ip
@ -130,7 +131,7 @@ relocate:
@done:
rts
not_installing:
.byte "INSUFFICIENT FREE MEMORY",0
.byte "INSUFFICIENT FREE MEMORY",13,0
ok_to_install:
ldax #end_of_loader
stax copy_src
@ -790,12 +791,13 @@ dhcp_keyword:
mac_keyword:
jsr extract_string
ldy #5
ldy #2
:
lda transfer_buffer,y
sta cfg_mac,y
sta cfg_mac_default+3,y
dey
bpl:-
jsr ip65_init
rts
ping_keyword:

View File

@ -4,6 +4,7 @@
.include "../inc/common.i"
.export cfg_mac
.export cfg_mac_default
.export cfg_ip
.export cfg_netmask
.export cfg_gateway