-
Notifications
You must be signed in to change notification settings - Fork 174
Platform Ondra Vili
suborb edited this page Oct 3, 2020
·
2 revisions
- U880D @ 2Mhz
- 64k RAM, 4k ROM
- Native console output
- Native console input
- ANSI vt100 engine
- Generic console
- Redefinable font
- UDG support
- Paper colour
- Ink colour
- Inverse attribute
- Bold attribute
- Underline attribute
- Lores graphics
- Hires graphics
- PSG sound
- One bit sound
- Inkey driver
- Hardware joystick
- File I/O
- Interrupts
- RS232
zcc +ondra world.c -create-app
This will create a .wav file suitable for loading into Mame. A .tap file is also created that should be readable by other emulators.
To load a tape, press return and then hit play on the tape
The Ondra keyboard consists of 3 rows of keys, the numbers are obtained by a modifier key. The mappings for z88dk/mame are:
- No modifier: Lower case letters
- Left shift: Upper case letters (UPPER key)
- Right shift: Symbols (SYMBOL key)
- Right Alt: Number (NUMBER key)
- Left Alt: Control (CS key)
For want of a better place, the delete/backspace key is mapped to CS + RETURN
Drawing on the screen on this target is notoriously slow.
- Overview
- Platform List
- Unsupported Platforms
- i8080/5 Support
- Homebrew hardware quickstart
- Retargetting
- Building the libraries
- Clang support
- Pragmas
- Adding to Classic
- Introduction
- Library Configuration
- CRT
- Header Files
- Assembly Language
- Library in Depth
- Embedded Platform
- Adding to NewLib
- Benchmarks
- Datatypes
- Debugging
- Decompression
- More than 64k
- Deficiencies
- Compiling Larger Applications
- Importing routines written in 8080 assembly mnemonics
- Using CP/M libraries in REL format with z88dk
- Writing optimal code
- Speeding up Compilation
- CMake usage