mirror of
https://github.com/bobbimanners/emailler.git
synced 2025-01-31 15:30:45 +00:00
git-svn-id: http://svn.code.sf.net/p/netboot65/code@279 93682198-c243-4bdb-bd91-e943c89aac3b
This commit is contained in:
parent
33d0367389
commit
66516ca026
Binary file not shown.
@ -12,7 +12,6 @@
|
|||||||
140 !"</form>"
|
140 !"</form>"
|
||||||
200 yield
|
200 yield
|
||||||
|
|
||||||
100 !"<h1>hello</h1>"
|
|
||||||
1000!"<br>hello "+n$+", i'm a c64 running basic on bails."
|
1000!"<br>hello "+n$+", i'm a c64 running basic on bails."
|
||||||
1010 yield
|
1010 yield
|
||||||
|
|
||||||
|
Binary file not shown.
@ -79,6 +79,7 @@ crunched_line = $0200 ;Input buffer
|
|||||||
.import print_cr
|
.import print_cr
|
||||||
.import dhcp_server
|
.import dhcp_server
|
||||||
.import cfg_mac
|
.import cfg_mac
|
||||||
|
.import cfg_mac_default
|
||||||
.import cs_driver_name
|
.import cs_driver_name
|
||||||
.importzp tftp_filename
|
.importzp tftp_filename
|
||||||
.import tftp_ip
|
.import tftp_ip
|
||||||
@ -130,7 +131,7 @@ relocate:
|
|||||||
@done:
|
@done:
|
||||||
rts
|
rts
|
||||||
not_installing:
|
not_installing:
|
||||||
.byte "INSUFFICIENT FREE MEMORY",0
|
.byte "INSUFFICIENT FREE MEMORY",13,0
|
||||||
ok_to_install:
|
ok_to_install:
|
||||||
ldax #end_of_loader
|
ldax #end_of_loader
|
||||||
stax copy_src
|
stax copy_src
|
||||||
@ -790,12 +791,13 @@ dhcp_keyword:
|
|||||||
|
|
||||||
mac_keyword:
|
mac_keyword:
|
||||||
jsr extract_string
|
jsr extract_string
|
||||||
ldy #5
|
ldy #2
|
||||||
:
|
:
|
||||||
lda transfer_buffer,y
|
lda transfer_buffer,y
|
||||||
sta cfg_mac,y
|
sta cfg_mac_default+3,y
|
||||||
dey
|
dey
|
||||||
bpl:-
|
bpl:-
|
||||||
|
jsr ip65_init
|
||||||
rts
|
rts
|
||||||
|
|
||||||
ping_keyword:
|
ping_keyword:
|
||||||
|
@ -4,6 +4,7 @@
|
|||||||
.include "../inc/common.i"
|
.include "../inc/common.i"
|
||||||
|
|
||||||
.export cfg_mac
|
.export cfg_mac
|
||||||
|
.export cfg_mac_default
|
||||||
.export cfg_ip
|
.export cfg_ip
|
||||||
.export cfg_netmask
|
.export cfg_netmask
|
||||||
.export cfg_gateway
|
.export cfg_gateway
|
||||||
|
Loading…
x
Reference in New Issue
Block a user