A2osX/README.md

413 lines
16 KiB
Markdown
Raw Normal View History

2018-07-20 05:43:11 +00:00
# A2osX (0.92) Multi-Tasking OS for Apple II
2017-08-23 11:31:35 +00:00
## Disk images :
2018-07-20 17:26:34 +00:00
+ **A2OSX.BOOT.po** : **(0.92)** 140k BOOT disk image with all binaries
2018-09-07 20:23:47 +00:00
+ **A2OSX.DEV.po** : **(0.92)** 140k disk image with ASM binaries, Debug Tools & INClude files
2018-07-20 14:10:10 +00:00
+ **A2OSX.BUILD.po** : **(0.92)** 800k BOOT disk image with S-C MASM 3.0 and all binaries (BOOT+DEV)
+ **A2OSX.SRC.po** : **(0.92)** 800k disk image with all sources
2018-11-10 20:40:26 +00:00
## Latest News 2018-11-10
2018-11-10 20:50:26 +00:00
My loneliness has been cured, new resources have signed onto the project. I welcome Patrick Kloepfer
2018-11-10 20:40:26 +00:00
who is helping with product management, recruitment, testing and feedback.
## News 2018-09-06
2018-09-06 07:45:50 +00:00
2018-09-06 08:06:02 +00:00
0.92 stable enough to resume playing with.
Many 0.9.1 bugs already corrected in this version, please check & close opened issues.
2018-09-06 07:45:50 +00:00
## News 2018-07-20
2018-07-20 14:10:10 +00:00
Kernel & some BINs/SBINs migrated to 0.92.
## News 2018-06-17
2018-06-18 06:22:50 +00:00
Ok, as i'm still the lone developer here, i decided to break the kernel, HAHAHAHAHAHA!!!!
I updated the Calling Convention (see projects), i now setup the header in each KERNEL.S.* file accordingly to generate doc, then i change the code...
So ....nothing works anymore on the A2OSX.BUILD media...
2018-07-20 14:10:10 +00:00
## News 2018-06-13
2018-06-13 11:26:11 +00:00
Previous (relatively!) stable version 0.9.1 has been archived, see link above.
Roadmap for 0.9.2:
+ Organize this roadmap in projects (anybody interested in a PM job ?)
+ Organize Testing (Testers wellcome)
+ NET : TCPIP Network services, AppleTalk (Coders wellcome)
+ GUI : Window Manager (Coders wellcome)
2018-06-13 11:44:31 +00:00
+ DEV : ASM, CSH, C compiler, someone suggested PLASMA (Coders wellcome)
2018-06-13 11:26:11 +00:00
+ release Version 1.0.0
Sub projects:
+ Finalize enhanced STDIO (Buffered IO)
+ Link UDP/TCP sockets to new STDIO
+ Rewrite Driver interface (SmartPort Protocol) and link to STDIO
+ establish parameter passing convention (C-like Stack frame)
+ Move all LIBs to this new convention to allow preemtive mode for LIBs
+ AT commands (Appletalk)
+ TELNETD/HTTPD/NFSD (STDIO)
+ GUI : Window Manager, Controls...
+ Assembler (AUX mem manager) will allow A2osX to build entirely itself every night!
+ Shell CSH (MATH API, AUX mem manager)
+ C compiler (Stack Frame, MATH API, AUX mem manager)
+ Disk II format (LIBBLKDEV)
+ Simple compression API (LIBPAK)
+ CSH+LIBPACK -> A2osX Installer
+ TCPIP+SSC DRV+LIBBLKDEV -> ADT Client
+ /etc/passwd (LIBCRYPT)
I need :
+ someone able to handle project management so i can focus on code writing
+ developers interested in one of these subjects above
+ someone able to build a test plan
+ ....ideas...help....support....beer, or something stronger!
2018-07-20 14:10:10 +00:00
## News 2018-05-29
Time to work on STDIO :
+ Buffered IO to link TCP/IP stream sockets properly to STDIN,STDOUT,STDERR (TELNETD)
+ Implement missing STDIO functions (Puts, FPuts...)
+ Faster Console output
+ Better 'C-Like' API
Scope : KERNEL.STDIO, All drivers, CDEV, FIFO,...
Goal : TELNETD & HTTPD working.
Wanna play ?
## News 2018-04-29
2018-05-25 19:03:31 +00:00
Kernel 0.9.1 is now preemptive.
It defaults to cooperative mode ('P'olling mode). For this, no particular hardware needed (except 65c02 and 128k, of course!)
If you want to enable preemptive mode, all you need is a "tick" source to get 'V'BL or 'C'lock Mode.
(see below for supported hardware)
Then you must explicitly ENABLE it using KCONFIG utility. (see screenshot below)
2018-05-25 19:29:29 +00:00
You can monitor the kernel state on the 'SYS' screen (OA-1, or SHIFT-OA-1 on french keyboards) and look at the upper right corner, you should see a blincking 'P', 'V' or 'C', showing you the current kernel state..
2018-05-25 19:03:31 +00:00
If you enabled preemptive mode, you should see an additional blinking 'S', each time the kernel switch from one PS to another.
Reminder :
+ (SHIFT)-OA-1 : Kernel SYS Screen
+ (SHIFT)-OA-2 : Console Screen (Shell...)
+ (SHIFT)-OA-3 : DHGR Screen (if loaded)
For now, only SBIN/BIN executables are "switcheable".
Roadmap is as follow:
+ Check all BIN/SBIN sources to make them preemptive compliant, most of them are NOT.
+ Add a way to make LIB also interruptible and reentrant.
+ Add more supported hardware for system clock.
+ ...and still hoping finding few contributors.... :-(
## News 2017-11-08
Kernel 0.9.1 stable enough to resume building.
+ KM.APPLETALK module not crashing anymore
(Undocummented AtInit function, had to go further in official ATINIT disassembly)
+ Improved Command Line editing and history.
(SUPPR key is emulated with Ctrl-X using //e keyboard)
2017-12-08 16:10:39 +00:00
+ New DevMgr enumeration strategy, now including /RAM and other virtual Block Devices
+ Math API (Hacked from APPLESOFT ROM ;-)
+ CSH Script engine within Shell (In progress)
## News 2017-09-22
2017-10-04 15:12:03 +00:00
(once Kernel 0.9.1 stable enough, BOOT & DEV will be updated) __(done!)__
**0.9 has been archived, next Kernel Version is 0.9.1**
2017-08-23 11:33:51 +00:00
+ More Standard C API compliance __(done!)__
+ API Cleanup, many functions still use shared space __(done!)__
+ Per process Stack Segment __(done!)__
+ Larger S.PS structure __(done!)__
2017-08-23 11:31:35 +00:00
+ ...
+ to allow...Preemptive!
2017-08-23 11:31:35 +00:00
**"System Tick" sources for preemptive mode :**
| Hardware | Resolution | Status | Comment |
| -------------------------| ---------- | ----------- | ------- |
2018-05-25 19:29:29 +00:00
| //c,//c+,IIgs Mouse port | 50/60 Hz | Working | Supported at Kernel level, no conflict with GUI's Mouse.DRV (not required to be loaded), requires setting "Machine Timing" properly in KConfig Utility |
| IIe Mouse Card | 50/60 Hz | Working | (same as above) |
2017-12-22 21:24:30 +00:00
| ThunderClock Plus | 64 Hz | Working | gave up fixing this faulty H/W, thanx to JACE emulator! |
2018-05-25 19:29:29 +00:00
| Super Serial Card | ? | Idea, from EtchedPixels | #31 |
| MockingBoard | ? | Idea, from Michael | |
2018-05-28 11:46:20 +00:00
| GOES Irq Card | ? | Idea, from Oliver | #34 |
2018-05-25 19:29:29 +00:00
| ... Any Other suggestion ? | | | |
2017-04-02 21:50:20 +00:00
## !!!HELP NEEDED!!!
Thanx a lot for all positive comments i read here and there, but i definitively need contributors & testers.
Anybody wants to join this project ?
If you're interested on contributing, please send a message with your skills and in which area you are interested to work on (Network, Kernel, device drivers for additional hardware support, GUI, graphical resourses, command line tools....)
This is some sort of "last hope call", some of you were right, this project is really huge!!!
Anyway, i'm convinced that a small team of developers could reach "version 1.0" with GUI & network support in few months....i'm working on it for...4 years now, spending the most of my free time fixing hardware to test this code instead of...writing it!
Well, let me know if you can bring "fresh blood" to this stuff...
2017-04-02 21:50:20 +00:00
## Requires :
Enhanced IIe (65c02 cpu) with 128k, //c, IIgs
## Introduction...
A2osX is a cooperative, event-driven multitasking kernel (meaning it is applications that are responsible to give back control to kernel)
Its principal goal is to collect all "genius" 65c02 pieces of code ever written here and there, concentrated in the same environment.
(including IP Stack & HTTPD/TELNETD..., GUI & graphical tools...)
"Complete working place", no needing any more to reboot to switch between tons of diskettes!!!
2017-04-02 22:03:38 +00:00
A2osX is designed to work on any "stock" 128k Apple //e, with no additional hardware. As VBL signal is NOT available as an IRQ on //e (it is on //c & IIgs)
2017-08-23 11:31:35 +00:00
it makes preemptive multitasking impossible.
2017-04-02 22:03:38 +00:00
__A new attempt using Mouse card VBL IRQ is targeted in 0.9.1.__
2017-04-02 22:03:38 +00:00
2017-04-02 21:50:20 +00:00
Kernel, loading in Aux LC on top of ProDOS provide API inspired from Linux/Unix World to allow writing applications & command line tools on top of it.
This kernel provides an advanced "Memory Manager" able to relocate 65c02 code.
"Event Manager" makes TCPIP stack able to listen on several ports, manage ARP,DNS...cache expiration and any background processes.
"Task Manager" is responsible to "distribute" CPU time to several loaded processes.
2017-04-02 22:03:38 +00:00
"Device Manager" handles event collected from builtin devices as well as devices added by loadable drivers.
If you're 65c02 or Z80 code writer, how to contribute ?
Several subprojects are now indentified :
+ Hardware Support : adding drivers to support more & more hardware (RAM cards, storage....)
2016-11-14 10:21:46 +00:00
+ Z80 support : Kernel could pass control to any Z80 detected on the system.
+ TCP/IP stack
2017-04-02 22:03:38 +00:00
+ AppleTalk Support
+ GUI & Printing
+ Archive, Disk Image transfer tools (ADT client!)...
+ Question : Pascal or C Compiler?
+ --> Answer : C compiler....Next version of Kernel API will be closer to STDLIBC, Genralize the use of C-Strings
2017-04-02 22:03:38 +00:00
+ ...sure there is some more!
2017-04-02 22:03:38 +00:00
## Screenshots
2017-12-08 16:10:39 +00:00
UNIX-Like Shell...
2017-12-12 07:27:36 +00:00
![](./.screen-shots/ScreenShot.LS.png)
2017-12-08 16:10:39 +00:00
TCP/IP Stack...
![](./.screen-shots/ScreenShot.IP1.png)
![](./.screen-shots/ScreenShot.IP2.png)
2017-12-08 16:10:39 +00:00
Full screen editor ...
![](./.screen-shots/ScreenShot.EDIT.png)
2017-12-08 16:10:39 +00:00
Kernel Configuration Utility...
![](./.screen-shots/ScreenShot.KCONFIG.png)
Color ANSI/VT100 Support...
2017-12-08 16:10:39 +00:00
![](./.screen-shots/PuTTY.png)
DHGR Mixed-Mode Graphic primitives....
![](./.screen-shots/ScreenShot.GFX.png)
## General Information:
Kernel API is confined in Aux LC Bank 1 & 2 to leave enough room at $EOOO for Drivers.
2017-04-02 22:03:38 +00:00
Network drivers, Mouse, DHGR.DRV can load and fit in Aux LC.
Now it's time to make all external BINs use new API, then GUI development will resume.
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-03-13 22:05:10 +00:00
2016-01-25 20:06:14 +00:00
## SYS/KM* Supported Hardware At Kernel Level (ProDOS):
2017-04-02 22:03:38 +00:00
| KM.Name | Status | Comment |
| ------- | ------ | ------- |
| KM.NSC | Working | No-Slot-Clock/DS1216E |
| KM.RAMWORKS | Working | AE-Ramworks I,II,III |
| KM.VSDRIVE | Working | ADTPro Virtual Drive for SSC |
| KM.APPLETALK | Working | AppleTalk Support for ProDOS |
2017-04-02 22:03:38 +00:00
## SBIN,Daemons/Commands:
| Name | Status | Comment | K.Ver |
| ---- | ------ | ------- | ------|
2018-07-20 05:43:11 +00:00
| INSDRV | Working | | 0.92 |
2018-11-20 15:54:49 +00:00
| GETTY | Working | -E : Exit on remote close | 0.92 |
| LOGIN | In Progress | no auth using /etc/passwd yet | 0.92 |
2018-07-20 05:43:11 +00:00
| SHELL | Working | (See Internal Shell commands) | 0.92 |
2018-07-23 15:28:42 +00:00
| KCONFIG | Working | Kernel Configuration Utility | 0.92 |
| ---- | ------ | ------- | ----- |
2018-11-20 15:54:49 +00:00
| TCPIPD | Working | ARP,IP,ICMP,UDP & TCP ok | 0.92 |
2018-07-25 15:26:14 +00:00
| DHCPCLNT| Working | rewritten to use new Socket API | 0.92 |
2018-11-20 15:54:49 +00:00
| TELNETD | Working | | 0.92 |
| HTTPD | In Progress | | 0.9 |
2017-04-02 22:03:38 +00:00
## Internal Shell commands:
| Name | Status | Comment |
| ---- | ------ | ------- |
| CD | Working | Improved syntax : now, 'CD ../BIN' works |
2018-11-21 13:08:11 +00:00
| REN | Working | Rename a file, directory or volume |
2018-11-10 14:30:09 +00:00
| MD | Working | Create a directory |
| RD | Working | Delete an empty directory |
| PWD | Working | Print Working Directory |
2017-04-02 22:03:38 +00:00
| DATE | Working | |
| ECHO | Working | \b,\e,\f,\n,\\\ and \\% supported |
2018-11-28 11:39:33 +00:00
| | | -N : Suppress \r\n |
| EXIT | Working | exit shell |
| PAUSE | Working | Wait until CR |
2018-11-28 11:39:33 +00:00
| PUSHD | Working | Save actual working directory |
| | | PUSHD <dir> do aslo a CD to <dir> |
| POPD | Working | Restore previously saved working directory |
2017-04-02 22:03:38 +00:00
| READ | Working | -S : no echo (password) |
| | | -P : "prompt message" |
| TIME | Working | |
| SET | Working | -X toggle debug mode |
| SLEEP | Working | Wait <count> 10th sec |
2019-02-03 21:58:26 +00:00
| NOHUP | Working | Start a process with PPID=PS0 (Daemon) |
2018-11-28 11:39:33 +00:00
| SHIFT | Working | Remove $1 from cmd line |
| ---- | ------ | ------- |
| IF .. ELSE .. FI | Working | [ -d direxists ] |
| | | [ -e fileordirexists ] |
| | | [ -f fileexists ] |
| | | [ string1 = string2 ] |
| | | [ string1 != string2 ] |
| | | [ int32 -eq int32 ] |
| | | [ int32 -ne int32 ] |
| | | [ int32 -lt int32 ] |
| | | [ int32 -le int32 ] |
| | | [ int32 -gt int32 ] |
| | | [ int32 -ge int32 ] |
2018-11-28 11:39:33 +00:00
| WHILE .. LOOP | Working | [ same tests as IF ] |
| BREAK | | |
| CONTINUE | | |
2017-04-02 22:03:38 +00:00
## Shell variables:
| Name | Status | Comment |
| ---- | ------ | ------- |
| $0 | Working | Command Full Path |
2016-10-29 19:54:37 +00:00
| $1-$9 | Working | Arg[n] |
2017-04-02 22:03:38 +00:00
| $* | Working | All Args |
| $# | Working | Arg Count |
| $? | Working | Return Code |
| $@ | Working | Parent PID |
| $$ | Working | PID |
| $! | Working | Child PID |
2018-11-28 14:58:42 +00:00
| $UID | Working | PS Owner UID |
| $PWD | Working | Working Directory |
2017-04-02 22:03:38 +00:00
note : '$VAR' does NOT expand Variable
2016-10-29 19:54:37 +00:00
2018-11-07 16:11:02 +00:00
## Shell I/O control/redirection:
| Token | Status | Comment |
| ---- | ------ | ------- |
| . | Working | use same env |
| & | Working | start proc |
| \| | | pipe |
| < | Working | StdIn redirection |
| >> | Working | StdOut redirection |
| > | Working | |
| 1>> | Working | |
| 1> | Working | |
| 2>> | Working | StdErr redirection |
2018-11-21 13:08:11 +00:00
| 2> | Working | |
2018-11-07 16:11:02 +00:00
2017-04-02 22:03:38 +00:00
## DRV,Drivers:
2016-10-29 19:54:37 +00:00
| Name | Status | Comment | K.Ver |
| ---- | ------ | ------- | ----- |
2018-07-20 05:43:11 +00:00
| Console.DRV | Working | ANSI support in Progress. | 0.92 |
2018-09-07 14:12:42 +00:00
| SSC.DRV | Working | Apple "Super Serial Card" Driver | 0.92 |
| SSC.I.DRV | Working | Apple "Super Serial Card" Driver (IRQ enabled) | 0.92 |
| PIC.DRV | In Progress | Apple "Parallel Interface Card" Driver, renamed from PPIC.DRV | 0.9 |
2018-01-15 16:51:44 +00:00
| Mouse.DRV | Working | Apple Mouse Card,//c Mouse Port | 0.9.1 |
| DHGR.DRV | Working | 560x192 Mono/16 colors Mixed-Mode support | 0.9.1 |
2017-02-22 07:31:16 +00:00
| ---- | ------ | ------- | ----- |
2018-08-27 05:39:42 +00:00
| LanCeGS.DRV | Working | | 0.92 |
2018-07-23 15:28:42 +00:00
| Uthernet.DRV | Working | | 0.92 |
2018-08-25 11:23:59 +00:00
| Uthernet2.DRV | Working | | 0.92 |
2018-08-27 05:39:42 +00:00
| Uther2.AI.DRV | In Progress | With ARP/IP Offloading | 0.92 |
2017-04-02 22:03:38 +00:00
## BIN,External Shell commands:
2016-10-07 19:27:49 +00:00
| Name | Status | Comment | K.Ver |
| ---- | ------ | ------- | ----- |
2018-07-20 05:43:11 +00:00
| MEM | Working | Old dump behavior is now MEMDUMP. New MEM command displays MEMSTAT (Main, Aux & Kernel Memory) | 0.92 |
2018-10-05 14:58:38 +00:00
| LSDEV | Working | Dump device Drivers | 0.92 |
| LSOF | Working | List Open Files | 0.92 |
| PS | Working | List Processes| 0.92 |
2018-11-10 14:30:09 +00:00
| MKDIR | Working | Make Directory| 0.92 |
2018-07-20 11:51:08 +00:00
| LS | Working | -A : Do Not Print . & .. | 0.92 |
| | | -L : long listing with size/date... | |
2016-10-29 20:14:43 +00:00
| | | -R : Recurse subdirectories | |
2018-07-20 11:51:08 +00:00
| RM | Working | -C : Continue On Error | 0.92 |
| | | -Q : Quiet | |
2016-10-29 20:14:43 +00:00
| | | -R : Recurse subdirectories | |
2018-07-20 11:51:08 +00:00
| CP | Working | -C : Continue On Error | 0.92 |
| | | -Q : Quiet | |
2016-10-29 20:14:43 +00:00
| | | -R : Recurse subdirectories | |
| | | -Y : Dont't Prompt For Override | |
2018-07-20 11:51:08 +00:00
| MV | Working | -C : Continue On Error | 0.92 |
| | | -Q : Quiet | |
| | | -R : Recurse subdirectories | |
2016-10-29 20:41:01 +00:00
| | | -Y : Dont't Prompt For Override | |
2018-07-20 05:43:11 +00:00
| CAT | Working | -A : Show All non printable caracters | 0.92 |
| | | -N : Number all output lines | |
| | | -S : Suppress repeated empty output lines | |
2018-07-20 11:51:08 +00:00
| EDIT | Working | still missing : find/replace | 0.92 |
2018-12-04 13:20:35 +00:00
| KILL | Working | KILL <signal> PID | 0.92 |
2018-07-20 14:10:10 +00:00
| FORMAT | In Progress | -L : Low-Level Format | 0.92 |
| | | -1..9 : Catalog Size (block count) | |
| CHTYP | Working | -C : Continue On Error | 0.92 |
| | | -R : Recurse subdirectories | |
2018-08-27 15:26:01 +00:00
| MD5 | Working | -D : String Input | 0.92 |
| CHMOD | In Progress | -C : Continue On Error | 0.9 |
| | | -R : Recurse subdirectories | |
| CHOWN | In Progress | -C : Continue On Error | 0.9 |
| | | -R : Recurse subdirectories | |
| CHGRP | In Progress | -C : Continue On Error | 0.9 |
| | | -R : Recurse subdirectories | |
2018-11-21 13:08:11 +00:00
| NSCUTIL | Working | Tool for setting time in NSC/DL1216E | 0.92 |
2018-07-20 11:51:08 +00:00
## Network (TCPIP) tools:
| Name | Status | Comment | K.Ver |
2017-02-22 07:31:16 +00:00
| ---- | ------ | ------- | ----- |
2018-07-23 15:28:42 +00:00
| IPCONFIG | Working | renamed from NETINFO | 0.92 |
| NETSTAT | Working | | 0.92 |
2018-07-25 15:26:14 +00:00
| ARP | Working | dump ARP cache, setup a static ARP entry | 0.92 |
| DNSINFO | Working | dump DNS cache, setup a static DNS entry | 0.92 |
2018-09-11 13:32:56 +00:00
| PING | Working | -1..9 : Ping Count | 0.92 |
2018-09-07 14:12:42 +00:00
| TELNET | Working | | 0.92 |
2017-04-02 22:03:38 +00:00
2018-07-20 11:51:08 +00:00
## DEV tools:
2016-10-07 20:48:49 +00:00
| Name | Status | Comment | K.Ver |
| ---- | ------ | ------- | ----- |
2018-08-25 11:23:59 +00:00
| MEMDUMP | Working | Tool to track memory leak| 0.92 |
2018-01-15 16:51:44 +00:00
| ASM | In Progress | S-C MASM based multi CPU assembler | 0.9.1 |
2017-10-04 15:12:03 +00:00
| ---- | ------ | ------- | ----- |
2018-09-07 20:23:47 +00:00
| RPCDUMP | In Progress | tool based on UDP socket API, renamed from RPCINFO | 0.92 |
2017-04-02 22:03:38 +00:00
## Misc
### S-C MASM color scheme for Notepad++
...drop _Tools/userDefineLang.xml in %APPDATA%\Notepad++
2016-01-25 19:48:22 +00:00
;-)