mirror of
https://github.com/oliverschmidt/contiki.git
synced 2024-11-03 22:06:22 +00:00
98060c1eab
Relevant cc65 changes... General: - The compiler generates "extended" dependency info (like gcc) so there's no need for postprocessing whatsoever :-) - The linker is very pernickety regarding the ordering of cmdline options so a custom linker rule is necessary :-( Apple2: - The various memory usage scenarios aren't specified anymore via separate linker configs but via defines overriding default values in the builtin linker config. Atari: - The builtin linker config allows to override the start addr so there no more need for a custom linker config. - The C library comes with POSIX directory access. So there's no more need for for a custom coding. CBM: - The C library comes with POSIX directory access. So there's no more need for for a custom coding. |
||
---|---|---|
.. | ||
lib | ||
sys | ||
contiki-conf.h | ||
contiki-main.c | ||
Makefile.apple2enh | ||
README |
The platform/apple2enh/ directory is used for targeting an Enhanced Apple //e (or compatible) computer. Most things are shared between the 6502-based targets so please consult cpu/6502/README for further details. The following Apple II Ethernet cards are supported: - Uthernet: Use driver cs8900a.eth with address $C0x0 (x = 8 + slot number). - LANceGS: Use driver lan91c96.eth with address $C0x0 (x = 8 + slot number). In most cases it is desirable to use an emulator for the development and testing of a Contiki application. AppleWin is especially well suited as it emulates the Uthernet card in slot 3. It is available at http://applewin.berlios.de/. The 'disk' make goal requires AppleCommander 1.3.5 or later. It is available at http://applecommander.sourceforge.net/. The apple2enh target supports a PFS that requires much less RAM than the POSIX file system. However this benefit comes with the following restrictions: - Only one file may be open at the same time. - Only read operations are supported but no write operations. - The files must be located in the same directory the application is located in (the ProDOS prefix may very well point to another directory). - The network MTU size must be set at least to 1265 (the default is 1500). - No network function may be called while a file is open.