emailler/ip65
Oliver Schmidt 4577c2ab19 Removed Ethernet driver I/O base.
So far the base address of the Ethernet chip was a general property of all Ethernet drivers. It served two purposes:
1. Allowing to use a single Ethernet driver for a certain Ethernet chip, no matter what machine was connected to the chip.
2. Allowing use an Ethernet card in all Apple II slots.

However, we now use customized Ethernet drivers for the individual machines so 1.) isn't relevant anymore. In fact one wants to omit the overhead of a runtime-adjustable base address where it isn't needed.

So only the Apple II slots are left. But this should rather be a driver-internal approach then. We should just hand the driver the slot number the user wants to use and have the driver do its thing.

Independently from the aspect if the driver parameter is a base address or a slot number the parameter handling was changed too. For asm programs there was so far a specific init function to be called prior to the main init function if it was desired to chnage the parameter default. This was done to keep the main init function backward compatible. But now that the parameter (now the slot number) is only used on the Apple II anyhow it seems reasonable to drop the specific init function again and just provide the parameter to the main init function. All C64-only user code can stay as-is. Only Apple II user code needs to by adjusted. Please note that this change only affects asm programs, C programs always used a single init function with the Apple II slot number as parameter.
2019-05-02 14:44:24 +02:00
..
arithmetic.s Adjusted include file extension to ca65 practice. 2018-02-23 16:36:05 +01:00
arp.s Adjusted include file extension to ca65 practice. 2018-02-23 16:36:05 +01:00
config_c.s Adjusted include file extension to ca65 practice. 2018-02-23 16:36:05 +01:00
config.s Adjusted include file extension to ca65 practice. 2018-02-23 16:36:05 +01:00
copymem.s Replaced custom zeropage variables with cc65 default zeropage variables. 2014-07-07 20:56:21 +02:00
dhcp_c.s Adjusted include file extension to ca65 practice. 2018-02-23 16:36:05 +01:00
dhcp.s Removed last KPR_* constants. 2018-02-23 16:41:33 +01:00
dns_c.s Adjusted include file extension to ca65 practice. 2018-02-23 16:36:05 +01:00
dns.s Removed last KPR_* constants. 2018-02-23 16:41:33 +01:00
dottedquad_c.s Minor style fix. 2018-07-20 13:59:06 +02:00
dottedquad.s Adjusted include file extension to ca65 practice. 2018-02-23 16:36:05 +01:00
download_c.s Split url.s into url.s and download.s. 2018-07-22 19:22:57 +02:00
download.s Improved URL selector handling. 2018-11-13 13:19:47 +01:00
eth_c.s Removed Ethernet driver I/O base. 2019-05-02 14:44:24 +02:00
eth.s Adjusted include file extension to ca65 practice. 2018-02-23 16:36:05 +01:00
http_c.s Adjusted include file extension to ca65 practice. 2018-02-23 16:36:05 +01:00
http.s Adjusted include file extension to ca65 practice. 2018-02-23 16:36:05 +01:00
httpd_c.s Adjusted include file extension to ca65 practice. 2018-02-23 16:36:05 +01:00
httpd.s Removed last KPR_* constants. 2018-02-23 16:41:33 +01:00
icmp_c.s Adjusted include file extension to ca65 practice. 2018-02-23 16:36:05 +01:00
icmp.s Removed last KPR_* constants. 2018-02-23 16:41:33 +01:00
input_c.s Enhanced C interface to user input control. 2018-08-01 19:00:39 +02:00
ip.s Adjusted include file extension to ca65 practice. 2018-02-23 16:36:05 +01:00
ip65_c.s Removed Ethernet driver I/O base. 2019-05-02 14:44:24 +02:00
ip65.s Removed Ethernet driver I/O base. 2019-05-02 14:44:24 +02:00
Makefile Removed Ethernet driver I/O base. 2019-05-02 14:44:24 +02:00
output_buffer.s General source code cleanup. 2013-12-27 14:57:56 +01:00
parser.s Adjusted include file extension to ca65 practice. 2018-02-23 16:36:05 +01:00
sntp_c.s Adjusted include file extension to ca65 practice. 2018-02-23 16:36:05 +01:00
sntp.s Removed last KPR_* constants. 2018-02-23 16:41:33 +01:00
string_utils.s Adjusted include file extension to ca65 practice. 2018-02-23 16:36:05 +01:00
tcp_c.s Make use of recently added popptr1. 2018-08-14 11:20:29 +02:00
tcp.s Improved URL selector handling. 2018-11-13 13:19:47 +01:00
tftp_c.s Added C interface to TFTP functions. 2018-07-20 14:51:20 +02:00
tftp.s Added C interface to TFTP functions. 2018-07-20 14:51:20 +02:00
timer_c.s Adjusted include file extension to ca65 practice. 2018-02-23 16:36:05 +01:00
timer.s Adjusted include file extension to ca65 practice. 2018-02-23 16:36:05 +01:00
udp_c.s Adjusted include file extension to ca65 practice. 2018-02-23 16:36:05 +01:00
udp.s Removed last KPR_* constants. 2018-02-23 16:41:33 +01:00
url_c.s Split url.s into url.s and download.s. 2018-07-22 19:22:57 +02:00
url.s Don't trash parameter in AX. 2018-12-09 19:49:30 +01:00