FabGL
ESP32 Display Controller and Graphics Library
VGA/Altair8800/Altair8800.ino

Altair 8800 Emulator - with ADM-31, ADM-3A, Kaypro, Hazeltine 1500 and Osborne I terminal emulation

/*
Created by Fabrizio Di Vittorio (fdivitto2013@gmail.com) - <http://www.fabgl.com>
Copyright (c) 2019-2022 Fabrizio Di Vittorio.
All rights reserved.
* Please contact fdivitto2013@gmail.com if you need a commercial license.
* This library and related software is available under GPL v3.
FabGL is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
FabGL is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with FabGL. If not, see <http://www.gnu.org/licenses/>.
*/
/*
* Optional SD Card connections:
* MISO => GPIO 16 (2 for PICO-D4)
* MOSI => GPIO 17 (12 for PICO-D4)
* CLK => GPIO 14
* CS => GPIO 13
*
* To change above assignment fill other paramaters of FileBrowser::mountSDCard().
*/
#include <Preferences.h>
#include "fabgl.h"
#include "fabutils.h"
#include "src/machine.h"
// Flash and SDCard configuration
#define FORMAT_ON_FAIL true
#define SPIFFS_MOUNT_PATH "/flash"
#define SDCARD_MOUNT_PATH "/SD"
// Display controller (textual or bitmapped)
#define USE_TEXTUAL_DISPLAYCONTROLLER
// 8'' disk images (338K)
// To use these disks you have to enable Disk_338K and disable MiniDisk_76K
// CP/M 2.2
#include "disks/CPM22/cpm22_dsk.h" // usage: "#define DRIVE_A cpm22_dsk"
#include "disks/CPM22/games_dsk.h" // usage: "#define DRIVE_B games_dsk"
#include "disks/CPM22/turbopascal3_dsk.h" // usage: "#define DRIVE_B turbopascal3_dsk"
#include "disks/CPM22/wordstar3_dsk.h" // usage: "#define DRIVE_B wordstar3_dsk"
#include "disks/CPM22/wordstar4_dsk.h" // usage: "#define DRIVE_B wordstar4_dsk"
#include "disks/CPM22/multiplan_dsk.h" // usage: "#define DRIVE_B multiplan_dsk"
#include "disks/CPM22/dbaseii_dsk.h" // usage: "#define DRIVE_B dbaseii_dsk"
#include "disks/CPM22/BDSC_dsk.h" // usage: "#define DRIVE_B BDSC_dsk"
#include "disks/CPM22/langs_dsk.h" // usage: "#define DRIVE_B langs_dsk"
// CP/M 1.4
#include "disks/CPM14/cpm141_dsk.h" // usage: "#define DRIVE_A cpm141_dsk"
// CP/M 3
#include "disks/CPM3/cpm3_disk1_dsk.h" // usage: "#define DRIVE_A cpm3_disk1_dsk"
#include "disks/CPM3/cpm3_disk2_dsk.h" // usage: "#define DRIVE_B cpm3_disk2_dsk"
#include "disks/CPM3/cpm3_build_dsk.h" // usage: "#define DRIVE_B cpm3_build_dsk"
// Altair DOS
// MEMORY SIZE? [insert "64"]
// INTERRUPTS? [press ENTER]
// HIGHEST DISK NUMBER? [insert "1"]
// HOW MANY DISK FILES? [insert "4"]
// HOW MANY RANDOM FILES? [insert "4"]
#include "disks/AltairDOS/DOS_1_dsk.h" // usage: "#define DRIVE_A DOS_1_dsk"
#include "disks/AltairDOS/DOS_2_dsk.h" // usage: "#define DRIVE_A DOS_2_dsk"
// Basic
// MEMORY SIZE? [press ENTER]
// LINEPRINTER? [insert "C"]
// HIGHEST DISK NUMBER? [press ENTER]
// HOW MANY FILES? [press ENTER]
// HOW MANY RANDOM FILES? [press ENTER]
#include "disks/basic/basic5_dsk.h" // usage: "#define DRIVE_A basic5_dsk"
// Mini disk images (76K)
// To use these disks you have to enable MiniDisk_76K and disable Disk_338K
// CP/M 2.2
#include "minidisks/CPM22/cpm22_disk1_minidsk.h" // usage: "#define DRIVE_A cpm22_disk1_minidsk"
#include "minidisks/CPM22/cpm22_disk2_minidsk.h" // usage: "#define DRIVE_B cpm22_disk2_minidsk"
// Basic (need i8080 CPU)
// MEMORY SIZE? [press ENTER]
// LINEPRINTER? [insert "C"]
// HIGHEST DISK NUMBER? [insert "0"]
// HOW MANY FILES? [insert "3"]
// HOW MANY RANDOM FILES? [insert "2"]
#include "minidisks/basic/basic300_5F_minidisk.h" // usage: "#define DRIVE_A basic300_5F_minidisk"
// Disks configuration
// Enable this when using 8'' disk images ("disks" folder)
#define DISKFORMAT Disk_338K
// Enable this when using minidisk images ("minidisk" folder)
//#define DISKFORMAT MiniDisk_76K
// Specify which disk image or file name assign to drives
#define DRIVE_A cpm22_dsk // A: read only (or read/write using SD Card)
#define DRIVE_B games_dsk // B: read only (or read/write using SD Card)
#define DRIVE_C "diskC.dsk" // C: read/write (remember to FORMAT!!)
#define DRIVE_D "diskD.dsk" // D: read/write (remember to FORMAT!!)
// consts
constexpr int DefaultCPU = 1; // 0 = i8080, 1 = Z80
constexpr int DefaultTermIndex = 2; // Default: "ADM-31"
constexpr int MaxTermIndex = 7; // Max: "Legacy ANSI"
constexpr int DefaultKbdLayIndex = 2; // Default: "UK"
constexpr int DefaultRowsCount = 0; // 0 = no limit (34 on the text terminal)
const char * ColorsStr[] = { "Green/Black", "Yellow/Black", "White/Black", "Black/White", "Yellow/Blue", "Black/Yellow" };
constexpr int DefaultColorsIndex = 0; // Default: Green/Black
constexpr int MaxColorsIndex = 5;
// globals
#ifdef USE_TEXTUAL_DISPLAYCONTROLLER
fabgl::VGATextController DisplayController;
#else
fabgl::VGAController DisplayController;
#endif
fabgl::PS2Controller PS2Controller;
fabgl::Terminal Terminal;
Machine altair;
Mits88Disk diskDrive(&altair, DISKFORMAT);
SIO SIO0(&altair, 0x00);
SIO SIO1(&altair, 0x10);
SIO SIO2(&altair, 0x12);
Preferences preferences;
// base path (can be SPIFFS_MOUNT_PATH or SDCARD_MOUNT_PATH depending from what was successfully mounted first)
char const * basepath = nullptr;
TermType getTerminalEmu()
{
return (TermType) preferences.getInt("termEmu", DefaultTermIndex);
}
void setupTerminalEmu()
{
Terminal.setTerminalType(getTerminalEmu());
}
// 0 = max
int getRowsCount()
{
return preferences.getInt("rowsCount", DefaultRowsCount);
}
void setupRowsCount()
{
int rows = getRowsCount();
if (rows <= 0)
Terminal.write("\e[r"); // disable scrolling region
else
Terminal.printf("\e[1;%dr", rows); // enable scrolling region (1..rows)
}
int getKbdLayoutIndex()
{
return preferences.getInt("kbdLay", DefaultKbdLayIndex);
}
void setupKbdLayout()
{
PS2Controller.keyboard()->setLayout( SupportedLayouts::layouts()[getKbdLayoutIndex()] );
}
bool getRealCPUSpeed()
{
return preferences.getBool("realSpeed", false);
}
void setupRealCPUSpeed()
{
altair.setRealSpeed(getRealCPUSpeed());
}
// 0 = 8080, 1 = Z80
int getCPU()
{
return preferences.getInt("CPU", DefaultCPU);
}
bool getEmuCRT()
{
return preferences.getBool("emuCRT", false);
}
int getColorsIndex()
{
return preferences.getInt("colors", DefaultColorsIndex);
}
void setupTerminalColors()
{
int colorsIndex = getColorsIndex();
Terminal.setForegroundColor(TextColors[colorsIndex]);
Terminal.setBackgroundColor(BackColors[colorsIndex]);
}
// shown pressing PAUSE
void emulator_menu()
{
bool resetRequired = false;
bool changedRowsCount = false;
for (bool loop = true; loop; ) {
diskDrive.flush();
Terminal.write("\r\n\n\e[97m\e[40m ** Emulator Menu **\e[K\r\n\e[K\n");
Terminal.write( "\e[93m Z \e[37m Reset\e[K\n\r");
Terminal.write( "\e[93m S \e[37m Send Disk to Serial\e[K\n\r");
Terminal.write( "\e[93m R \e[37m Get Disk from Serial\e[K\n\r");
Terminal.write( "\e[93m F \e[37m Format FileSystem\e[K\n\r");
Terminal.printf("\e[93m U \e[37m CPU: \e[33m%s\e[K\n\r", getCPU() == 1 ? "Z80" : "i8080");
Terminal.printf("\e[93m P \e[37m Real CPU Speed: \e[33m%s\e[K\n\r", getRealCPUSpeed() ? "YES" : "NO");
Terminal.write("\e[6A"); // cursor UP
Terminal.printf("\t\t\t\t\t\e[93m T \e[37m Terminal: \e[33m%s\e[K\n\r", SupportedTerminals::names()[(int)getTerminalEmu()] );
Terminal.printf("\t\t\t\t\t\e[93m K \e[37m Keyboard Layout: \e[33m%s\e[K\n\r", SupportedLayouts::names()[getKbdLayoutIndex()] );
#ifndef USE_TEXTUAL_DISPLAYCONTROLLER
Terminal.printf("\t\t\t\t\t\e[93m G \e[37m CRT Mode: \e[33m%s\e[K\n\r", getEmuCRT() ? "YES" : "NO");
#endif
Terminal.printf("\t\t\t\t\t\e[93m C \e[37m Colors: \e[33m%s\e[K\n\r", ColorsStr[getColorsIndex()] );
Terminal.printf("\t\t\t\t\t\e[93m L \e[37m Rows: \e[33m%d\e[K\n\r", getRowsCount() <= 0 ? Terminal.getRows() : getRowsCount());
Terminal.write( "\t\t\t\t\t\e[93m O \e[37m Reset Configuration\e[K\n\r");
Terminal.write("\n\n\e[97mPlease select an option (ENTER to exit): \e[K\e[92m");
int ch = toupper(Terminal.read());
Terminal.write(ch);
Terminal.write("\n\r");
switch (ch) {
// 1. Send a disk image to Serial Port
// 2. Receive a disk image from Serial Port
case 'S':
case 'R':
{
Terminal.write("Select a drive (A, B, C, D...): ");
char drive = toupper(Terminal.read());
if (ch == 'S') {
Terminal.printf("\n\rSending drive %c...\n\r", drive);
diskDrive.sendDiskImageToStream(drive - 'A', &Serial);
} else if (ch == 'R') {
Terminal.printf("\n\rReceiving drive %c...\n\r", drive);
diskDrive.receiveDiskImageFromStream(drive - 'A', &Serial);
}
break;
}
// Format FileSystem
case 'F':
Terminal.write("\e[91mFormat deletes all disks and files in your SD or SPIFFS!\e[92m\r\nAre you sure? (Y/N)");
if (toupper(Terminal.read()) == 'Y') {
Terminal.write("\n\rFormatting...");
Terminal.flush();
FileBrowser::format(FileBrowser::getDriveType(basepath), 0);
resetRequired = true;
}
break;
// Reset
case 'Z':
Terminal.write("Resetting the Altair. Are you sure? (Y/N)");
if (toupper(Terminal.read()) == 'Y')
ESP.restart();
break;
// Real CPU speed
case 'P':
preferences.putBool("realSpeed", !getRealCPUSpeed());
setupRealCPUSpeed();
break;
// Emulate CRT
case 'G':
preferences.putBool("emuCRT", !getEmuCRT());
resetRequired = true;
break;
// CPU
case 'U':
preferences.putInt("CPU", getCPU() ^ 1);
resetRequired = true;
break;
// Terminal emulation
case 'T':
{
int termIndex = (int)getTerminalEmu() + 1;
if (termIndex > MaxTermIndex)
termIndex = 0;
preferences.putInt("termEmu", termIndex);
break;
}
// Keyboard layout
case 'K':
{
int kbdLayIndex = getKbdLayoutIndex() + 1;
if (kbdLayIndex >= SupportedLayouts::count())
kbdLayIndex = 0;
preferences.putInt("kbdLay", kbdLayIndex);
setupKbdLayout();
break;
}
// Colors
case 'C':
{
int colorsIndex = getColorsIndex() + 1;
if (colorsIndex > MaxColorsIndex)
colorsIndex = 0;
preferences.putInt("colors", colorsIndex);
break;
}
// Rows
case 'L':
{
int rows = getRowsCount() + 1;
if (rows < 24)
rows = 24; // min
if (rows > 25)
rows = 0; // max
preferences.putInt("rowsCount", rows);
changedRowsCount = true;
break;
}
// Reset configuration
case 'O':
preferences.clear();
resetRequired = true;
break;
default:
loop = false;
break;
}
}
if (resetRequired) {
Terminal.write("Reset required. Reset now? (Y/N)");
if (toupper(Terminal.read()) == 'Y') {
diskDrive.detachAll();
ESP.restart();
}
}
Terminal.localWrite("\n");
if (changedRowsCount) {
setupRowsCount();
Terminal.clear();
Terminal.write("Clear screen required. Settings applied.\r\n\e\n");
}
setupTerminalColors();
setupTerminalEmu();
}
void setup()
{
preferences.begin("altair8800", false);
Serial.begin(115200);
// setup Keyboard (default configuration)
PS2Controller.begin(PS2Preset::KeyboardPort0);
// setup VGA (default configuration with 64 colors)
DisplayController.begin();
if (getEmuCRT())
else
DisplayController.setResolution(VGA_640x200_70Hz);
Terminal.begin(&DisplayController);
Terminal.connectLocally(); // to use Terminal.read(), available(), etc..
Terminal.clear();
Terminal.enableCursor(true);
}
void attachDisk(int drive, void const * data)
{
auto filename = (char const *)data;
auto dskimage = (uint8_t const *) data;
if (dskimage[0] >= 0x80) {
// "data" is a disk image
if (FileBrowser::getDriveType(basepath) == fabgl::DriveType::SDCard) {
// when storage is SD Card, copy read only disk image into a file, if doesn't already exist
auto newfilename = String(basepath) + String("/disk") + String((char)('A' + drive)) + String(".dsk");
Terminal.printf("\r\nAttaching disk %c to %s...", 'A' + drive, newfilename.c_str());
diskDrive.attachFileFromImage(drive, newfilename.c_str(), dskimage);
} else {
// when storage is SPIFFS just mount image as Read Only image
diskDrive.attachReadOnlyBuffer(drive, dskimage);
}
} else {
if (filename[0] < 0x80) {
// "data" is a filename
Terminal.printf("\r\nAttaching disk %c to %s...", 'A' + drive, filename);
Terminal.flush();
diskDrive.attachFile(drive, (String(basepath) + String("/") + String(filename)).c_str());
}
}
}
void loop()
{
if (FileBrowser::mountSDCard(FORMAT_ON_FAIL, SDCARD_MOUNT_PATH))
basepath = SDCARD_MOUNT_PATH;
else if (FileBrowser::mountSPIFFS(FORMAT_ON_FAIL, SPIFFS_MOUNT_PATH))
basepath = SPIFFS_MOUNT_PATH;
// setup disk drives
attachDisk(0, DRIVE_A);
attachDisk(1, DRIVE_B);
attachDisk(2, DRIVE_C);
attachDisk(3, DRIVE_D);
// setup SIOs (Serial I/O)
// TTY
SIO0.attachStream(&Terminal);
// CRT/Keyboard
SIO1.attachStream(&Terminal);
// Serial
SIO2.attachStream(&Serial);
// RAM
altair.attachRAM(65536);
// boot ROM
altair.load(Altair88DiskBootROMAddr, Altair88DiskBootROM, sizeof(Altair88DiskBootROM));
// menu callback (pressing PAUSE or F12)
altair.setMenuCallback(emulator_menu);
setupTerminalColors();
Terminal.clear();
setupRowsCount();
Terminal.write("\e[97m\e[44m");
Terminal.write(" /* * * * * * * * * * * * * * * * * * * *\e[K\r\n");
Terminal.write(" A L T A I R 8 8 0 0 \e[K\r\n");
Terminal.write(" \e[37mby Fabrizio Di Vittorio - www.fabgl.com\e[97m\e[K\r\n");
Terminal.write(" * * * * * * * * * * * * * * * * * * * */\e[K\r\n\e[K\n");
Terminal.printf("\e[33mFree Memory :\e[32m %d bytes\e[K\r\n", heap_caps_get_free_size(MALLOC_CAP_32BIT));
int64_t total, used;
FileBrowser::getFSInfo(FileBrowser::getDriveType(basepath), 0, &total, &used);
Terminal.printf("\e[33mFile System :\e[32m %lld KiB used, %lld KiB free\e[K\r\n", used / 1024, (total - used) / 1024);
Terminal.printf("\e[33mKbd Layout : \e[32m%s\e[K\r\n", SupportedLayouts::names()[getKbdLayoutIndex()] );
Terminal.printf("\e[33mCPU : \e[32m%s\e[92m\e[K\r\n\e[K\n", getCPU() == 1 ? "Z80" : "i8080");
Terminal.printf("Press \e[93m[F12]\e[92m or \e[93m[PAUSE]\e[92m to display emulator menu\e[K\r\n");
setupTerminalColors();
// setup keyboard layout
setupKbdLayout();
// setup terminal emulation
setupTerminalEmu();
// CPU speed
setupRealCPUSpeed();
CPU cpu = (getCPU() == 1 ? CPU::Z80 : CPU::i8080);
altair.run(cpu, Altair88DiskBootROMRun);
}
void setLayout(KeyboardLayout const *layout)
Sets keyboard layout.
Definition: keyboard.cpp:224
static Keyboard * keyboard()
Returns the instance of Keyboard object automatically created by PS2Controller.
static void begin(gpio_num_t port0_clkGPIO, gpio_num_t port0_datGPIO, gpio_num_t port1_clkGPIO=GPIO_UNUSED, gpio_num_t port1_datGPIO=GPIO_UNUSED)
Initializes PS2 device controller.
The PS2 device controller class.
Definition: ps2controller.h:82
void connectLocally()
Permits using of terminal locally.
Definition: terminal.cpp:651
int getRows()
Returns the number of lines.
Definition: terminal.h:1217
void clear(bool moveCursor=true)
Clears the screen.
Definition: terminal.cpp:1010
size_t write(const uint8_t *buffer, size_t size)
Sends specified number of codes to the display.
Definition: terminal.cpp:1958
void localWrite(uint8_t c)
Injects keys into the keyboard queue.
Definition: terminal.cpp:1674
int read()
Reads codes from keyboard.
Definition: terminal.cpp:1703
void enableCursor(bool value)
Enables or disables cursor.
Definition: terminal.cpp:1115
void setColorForAttribute(CharStyle attribute, Color color, bool maintainStyle)
Selects a color for the specified attribute.
Definition: terminal.cpp:977
void setTerminalType(TermType value)
Sets the terminal type to emulate.
Definition: terminal.cpp:1966
void setBackgroundColor(Color color, bool setAsDefault=true)
Sets the background color.
Definition: terminal.cpp:920
bool begin(BaseDisplayController *displayController, int maxColumns=-1, int maxRows=-1, Keyboard *keyboard=nullptr)
Initializes the terminal.
Definition: terminal.cpp:323
void flush(bool waitVSync)
Waits for all codes sent to the display has been processed.
Definition: terminal.cpp:887
void setForegroundColor(Color color, bool setAsDefault=true)
Sets the foreground color.
Definition: terminal.cpp:940
An ANSI-VT100 compatible display terminal.
Definition: terminal.h:953
Represents the VGA bitmapped controller.
Definition: vgacontroller.h:89
void begin(gpio_num_t redGPIO, gpio_num_t greenGPIO, gpio_num_t blueGPIO, gpio_num_t HSyncGPIO, gpio_num_t VSyncGPIO)
This is the 8 colors (5 GPIOs) initializer.
void setResolution(char const *modeline=nullptr, int viewPortWidth=-1, int viewPortHeight=-1, bool doubleBuffered=false)
Sets fixed resolution.
Represents the VGA text-only controller.
GlyphOptions & Underline(bool value)
Helper method to set or reset underlined.
GlyphOptions & Italic(bool value)
Helper method to set or reset italic.
GlyphOptions & Bold(bool value)
Helper method to set or reset bold.
uint8_t const * data
This file is the all in one include file. Application can just include this file to use FabGL library...
#define VGA_640x200_70HzRetro
Definition: fabglconf.h:216
#define VGA_640x200_70Hz
Definition: fabglconf.h:213
This file contains some utility classes and functions.
@ ReducedLuminosity
Definition: terminal.h:739
TermType
This enum defines supported terminals.
Definition: terminfo.h:110
@ ANSILegacy
Definition: terminfo.h:118
Color
This enum defines named colors.