A2osX/README.md

94 lines
3.0 KiB
Markdown
Raw Normal View History

2016-01-11 11:24:58 +00:00
# A2osX
Multi-Tasking OS for Apple II
## Requires :
2016-06-15 06:21:42 +00:00
Enhanced IIe (65c02 cpu) with 128k, //c, IIgs
2016-01-11 11:24:58 +00:00
## General Information:
**A2OSX.BOOT.po** : 140k A2osX boot disk with all binaries
**A2OSX.DEV.po** : 140k A2osX disk will ASM binaries & INClude files
2016-06-15 06:21:42 +00:00
**A2OSX.SRC.po** : 800k S-C MASM boot disk with all sources
2016-01-11 12:58:19 +00:00
2016-01-11 11:24:58 +00:00
OApple+1,OApple+2,OApple+3 to switch between screens : Kernel Log, text, DHGR.
(OApple+shift+1,OApple+shift+2,OApple+shift+3 on FR keyboard)
2016-01-11 12:58:19 +00:00
2016-01-25 20:06:14 +00:00
### **** Developers WANTED ****
2016-03-13 22:05:10 +00:00
2016-01-25 20:06:14 +00:00
!!! Help on writing this code should be greatly appreciated !!!
2016-03-13 22:05:10 +00:00
2016-03-13 22:04:02 +00:00
...
In Progress : moving TCPIP to socket API
2016-03-13 22:05:10 +00:00
In Progress : moving KERNEL to AuxLC Bnk1 & 2 (16k, more space for drivers)
2016-03-13 22:04:02 +00:00
...
2016-03-13 22:05:10 +00:00
2016-01-25 20:06:14 +00:00
## SYS/KM* Supported Hardware At Kernel Level (ProDOS):
2016-01-11 15:17:06 +00:00
| KM.Name | Status | Comment |
| ------- | ------ | ------- |
| KM.NSC | Working | No-Slot-Clock |
| KM.RAMWORKS | Working | AE-Ramworks I,II,III |
2016-01-12 20:35:52 +00:00
## SBIN,Daemons:
| Name.DRV | Status | Comment |
| -------- | ------ | ------- |
| INSDEV | Working | |
| GETTY | Working | |
| LOGIN | In Progress | no auth using /etc/passd yet |
2016-03-31 20:13:29 +00:00
| TCPIP | In Progress | New Socket API. ARP,IP,ICMP,UDP ok, TCP in progress |
| DHCPCLNT | Working | rewritten to use new Socket API |
2016-05-02 12:35:17 +00:00
| SHELL | Working | (See Internal Shell commands) |
2016-01-12 20:35:52 +00:00
## DRV,Drivers:
2016-01-11 15:17:06 +00:00
| Name.DRV | Status | Comment |
| -------- | ------ | ------- |
| Console.DRV | Working | ANSI support in Progress. |
2016-03-31 20:13:29 +00:00
| PIC.DRV | In Progress | Apple "Parallel Interface Card" Driver, renamed from PPIC.DRV|
2016-01-12 20:35:52 +00:00
| SSC.DRV | In Progress | |
| SSC.I.DRV | In Progress | |
2016-01-11 15:17:06 +00:00
| Mouse.DRV | Working | |
| Uthernet.DRV | Working | |
2016-04-11 19:12:01 +00:00
| Uthernet2.DRV | Working | |
2016-04-04 20:53:55 +00:00
| Uther2.AI.DRV | In Progress | With ARP/IP Offloading |
2016-03-31 20:13:29 +00:00
| LanCeGS.DRV | Working | |
2016-01-12 20:35:52 +00:00
| Mouse.DRV | Working | |
2016-01-25 19:48:22 +00:00
| DHGR.DRV | In Progress | except bitblt... |
2016-01-12 20:35:52 +00:00
## Internal Shell commands:
| Name | Status | Comment |
| ---- | ------ | ------- |
| CD | Working | |
| DATE | Working | |
2016-03-13 21:55:47 +00:00
| ECHO | Working | |
2016-01-12 20:35:52 +00:00
| EXIT | Working | |
2016-05-01 21:13:54 +00:00
| IF | | |
2016-01-12 20:35:52 +00:00
| PAUSE | Working | |
2016-05-01 21:13:54 +00:00
| READ | | |
| TIME | Working | |
| TYPE | Working | |
2016-03-13 21:55:47 +00:00
| SET | Working | |
2016-03-13 22:04:02 +00:00
| STARTPROC | Working | Used in A2osX.startup |
2016-01-12 20:35:52 +00:00
## BIN,External Shell commands:
| Name | Status | Comment |
| ---- | ------ | ------- |
2016-01-25 19:48:22 +00:00
| MEM | Working | |
2016-01-12 20:35:52 +00:00
| LSDEV | Working | |
2016-01-25 19:48:22 +00:00
| PS | Working | |
| MD | Working | |
2016-05-01 21:13:54 +00:00
| RM | Working | switches not yet implemented, new ArgC/Arg[] coming... |
2016-01-25 19:48:22 +00:00
| LS | Working | BUG: `ls dir` does not list dir content (`ls dir/` works) |
2016-05-01 21:13:54 +00:00
| CP | Working| switches not yet implemented, new ArgC/Arg[] coming... |
2016-04-04 20:53:55 +00:00
| ARP | Working | dump ARP cache, setup a static ARP entry |
2016-01-12 20:35:52 +00:00
| PING | Working | |
2016-04-04 20:53:55 +00:00
| DNSINFO | Working | dump DNS cache, setup a static DNS entry |
2016-03-13 21:55:47 +00:00
| IPCONFIG | Working | renamed from NETINFO |
2016-01-25 19:48:22 +00:00
| NETSTAT | Working | |
2016-04-04 20:53:55 +00:00
| RPCDUMP | Working | tool based on UDP socket API, renamed from RPCINFO |
2016-03-13 21:55:47 +00:00
| EDIT | Working | still missing : find/replace |
2016-01-25 19:48:22 +00:00
| NSCUTIL | Working | Tool for setting time in NSC/DL1216E |
| ASM | In Progress | S-C MASM based multi CPU assembler |
2016-01-11 12:58:19 +00:00
2016-01-25 19:48:22 +00:00
## Misc
2016-01-25 20:06:14 +00:00
### S-C MASM color scheme for Notepad++
2016-01-25 19:48:22 +00:00
...drop _Tools/userDefineLang.xml in %APPDATA%\Notepad++
;-)