amishell v1.0.0
AmiShell
A shell for the WinUAE and FS-UAE Amiga emulators. If you are into retro crossdev, you can use this to ease the "test the created executable in the emulator" part, among other purposes.
Installation
To install from npm:
npm i -g amishellTo install from a local package:
npm i -g amishell-1.0.0.tgzTo verify that the command is correctly installed:
amishell --helpTo uninstall the package:
npm un -g amishellSetup
The Amiga emulator needs to be properly configured for communication through a virtual serial port.
FS-UAE
Include the following property in your .fs-uae configuration file:
serial_port = tcp://0.0.0.0:1234WinUAE
Include the following lines in your .uae configuration file:
win32.serial_port=TCP://0.0.0.0:1234
serial_translate=crlf_cr
serial_direct=trueUser-Startup
Add the following lines to your Amiga S:User-Startup file:
mount AUX:
newshell AUX:You will need to have the AUX mountlist in the DEVS:DosDrivers directory.
You may want to rename the AUX mountlist as AUXI under Windows if you have any problems with that particular name.
Serial Preferences
Execute the Prefs:Serial (2.0+) or Prefs:Preferences (1.3) program in your Amiga hard drive and set the serial preferences to these values:
- Baud Rate: 31250
- Input Buffer Size: 512
- Handshaking: XON/XOFF
- Parity: None
- Bits/Char: 8
- Stop Bits: 1
Usage
- Open your properly-configured Amiga emulator of choice.
- Open a Terminal or Command Prompt window in the host machine.
- To execute a single command (like
dir) in the emulator and exit:
amishell dir- To start an interactive shell session:
amishell- Use Up/Down arrows for command history.
- Use Ctrl+C to exit.
License
MIT Licensed. Copyright (c) Xeleh 2020.
Credits
- Coding: Jose Moreno 'Xeleh' (jmoreno@xeleh.com).
- Testing: Javier Romero 'Tolkien'.
6 years ago