This is an old revision of the document!


Tiny68K - Rev 2 (with 68010)

Introduction

As a long term Amiga user I've always had a soft spot for 68000 based machines.

With thanks to Philip Summers I obtained a blank PCB within a few days, and one weekend later I had a working machine.

Thanks to Bill Shen for creating and releasing the design and for providing instructions on how to prepare a CompactFlash (CF) card for CP/M-68K!

CP/M-68K with the 68010

The Tiny68K is a great target board for running CP/M-68K. With my Tiny68K build, I decided to use a Motorola 68010 as that is what I had available to me.

The 68010 is pin compatible with the 68000 and mostly binary compatible except for some minor differences. One of the main differences is that the “MOVE from SR” instruction is privileged versus the 68000.

The default CP/M-68K V1.3 image as provided by Bill Chen in his CF preparation procedure will boot with no problem on the 68010, however many programs crash due to a privilege violation.

CP/M-68K V1.3 does support the 68010 and includes an exception handler which “dynamically changes “MOVE from SR” instructions to the non-privileged “MOVE from CCR” instruction” (taken from README.TXT in CP/M-68K distribution disk set).

To use a 68010 with CP/M-68K a re-build of the CP/M-68K CCP and BDOS is required.

Re-building CP/M-68K for the 68010

To re-build CP/M-68K for the 68010:

1. Install a 68010 CPU on your Tiny68K and prepare a CF card as described here.

2. Test that the machine boots to CP/M-68K correctly.

If you run for example “CB68 ASCIIART” with a 68010 you will experience a privilege violation and the program “CB68” will crash.

3. Before you can re-build the BDOS and CCP, you require a small code stub so that the BIOS symbol “_init” is defined.

Using “ED” or “ME” (MicroEMACS), create a file named “TBIOS.S” with the following two lines of code:

.globl _init
_init: .equ $1B000

(The _init entry point of the Tiny68K BIOS as provided by Bill Chen begins at 0x1B000).

4. Save the file “TBIOS.S” and execute the following two commands:

as68 -I

as68 -L tbios.s tbios.o

(The first line initialises the assembler. The second line assembles the BIOS stub code).

5. Execute the following command:

lo68 -t15000 -o cpm15000.bin -ucpm -um68010 cpmlib tbios.o 0:clib

(This line produces a CPM15000.BIN file containing the CCP and BDOS. An non-relocatable (absolute) binary is generated, located at address 0x15000).

6. Execute the following command:

sendc68 - CPM15000.BIN CPM15000-010.S68

(The above line converts the CPM15000.BIN file to a Motorola S-Record file, and saves it to CPM-15000-010.S68).

7. Use either “GKERMIT” to transfer, or simply “TYPE CPM15000-010.S68” to dump the contents of the file CPM-15000-010.S68 to the terminal, copy the text from the terminal and save it to a file on your PC.

8. You now have a CP/M-68K BDOS and CCP for the 68010 CPU. Re-write this new binary to your CF card as described in the first few steps here.

After writing and booting CP/M-68K you should be able to run “CB68 ASCIIART” and other programs with no crash

Pre-prepared CP/M-68K binary for the 68010

If you'd rather not re-build CP/M-68K for the 68010, or you're running into problems, you can download a pre-prepared CPM15000-010.S68 file.

Write this file and the TinyBIOS to your CF card as described here.

Pictures

A picture of my Tiny68K with 68010 CPU is shown below.

Tiny68K

builderpages/rvumbaca/start.1538806114.txt.gz · Last modified: 2018/10/06 02:08 by rvumbaca
Driven by DokuWiki Recent changes RSS feed Valid CSS Valid XHTML 1.0