Scrigroup - Documente si articole

     

HomeDocumenteUploadResurseAlte limbi doc
BulgaraCeha slovacaCroataEnglezaEstonaFinlandezaFranceza
GermanaItalianaLetonaLituanianaMaghiaraOlandezaPoloneza
SarbaSlovenaSpaniolaSuedezaTurcaUcraineana

AdministrationAnimalsArtBiologyBooksBotanicsBusinessCars
ChemistryComputersComunicationsConstructionEcologyEconomyEducationElectronics
EngineeringEntertainmentFinancialFishingGamesGeographyGrammarHealth
HistoryHuman-resourcesLegislationLiteratureManagementsManualsMarketingMathematic
MedicinesMovieMusicNutritionPersonalitiesPhysicPoliticalPsychology
RecipesSociologySoftwareSportsTechnicalTourismVarious

CHIP8 A CHIP-8 / SCHIP emulator - Version 2.2.0

engineering



+ Font mai mare | - Font mai mic



CHIP8

A CHIP-8 / SCHIP emulator



Version 2.2.0

Contents

1 - CHIP8 features

1.1 - History

1.1.1 - The original CHIP-8

1.1.2 - CHIP-8 Today

1.1.3 - Why a CHIP-8 emulator ?

1.2 - Programs and memory

1.3 - Registers

1.4 - Graphics

1.5 - Instructions

1.6 - Keyboard

1.7 - CHIP-8/SCHIP games and programs

2 - The CHIP-8 emulator

2.1 - CHIP8 configuration

2.2 - Using CHIP8

2.3 - The FIX_CHIP utility

2.4 - The UNCHIP disassembler

2.5 - The BINHEX and HEXBIN utilities

2.6 - The CHIPPER assembler

3 - Contacts

4 - POSTWARE

1 - CHIP-8 features

1.1 - History

1.1.1 - The original CHIP-8

CHIP-8 is a language interpreter which was used in the late 70's and early 80's on some small commercial computers like RCA's TELMAC 1800 and COSMAC VIP, and these El-Cheapo Make-It-Yourself Hobbyist computers of these times like the ETI 660 and the DREAM 6800

CHIP-8 allowed to program video games easily. The TELMAC 1800 and the COSMAC VIP were based on RCAs CDP-1802 processor. Both came with an audiocassette containing more than 12 games, dated 1977 (the complete listings of these programs, as well as these of the interpreter and the computer ROM were listed in the manuals of the COSMAC and the TELMAC). This interpreter has less than 40 instructions including arithmetic, control flow, graphics and sound.

The interpreter had to be very compact because of the memory limitation of these machines: the COSMAC VIP had 2Kb (although it could be expanded to 32Kb), and the TELMAC had 4Kb. CHIP-8 was only 512 bytes long.

The simplicity of this early language allowed to program these Pong, Brix, Invaders and Tank games we used to see at this early time of the videogame. A good programmer could make these games fit into less than 256 bytes.

Here is a short story about a CHIP-8 user on a DREAM-6800:

'the DREAM and ETI 660 both appeared in Australian Electronics Magazines as construction projects. What all these computers had in common was that they were disgustingly cheap (about $100), used a hex keypad, could produce ultra stingy 64 x 32 PIXEL (The ETI 660 had 64 x 48 OR 64 x 64 with a modification) graphics for display on a TV, had about ONE kilobyte of RAM, and all ran a pseudo high-level language called CHIP-8 (which was developed by RCA for showing off the COSMAC's graphics, I think).

Somewhere along the way, my older brother made up a DREAM 6800. What a computer! Along with the construction articles for the DREAM & ETI 660 were heaps of CHIP-8 game listings. Some of the games were only 200 BYTES or so, so it didn't take forever to type them in. And the games were great fun. They weren't slow. And CHIP-8 was pretty much designed for making Classic style TV games anyway.'

Paul HAYTER (Author of a CHIP-8 interpreter on the Amiga)

1.1.2 - CHIP-8 today

CHIP-8 was not only used in the late 70's and early 80's. It was used in the early 90's on the HP48 calculator because there was no programming tools to develop fast games on it. Most of the original CHIP-8 games work with the CHIP48 interpreter, and some new ones were programmed. Refer to the section 1.7 for more details.

Then, a better version of CHIP-8 appeared: SUPER-CHIP. This interpreter has all the CHIP-8 features, as well as and some new ones like a 128*64 resolution.

There is a special CHIP-8/SCHIP library on HP48G I programmed, which has more than 40 games.

This is why there is the FIX_CHIP utility, which converts the CHIP-8 games of the HP48 to the PC format. Refer to section 2.2 for more informations.

1.1.3 - Why a CHIP-8 emulator ?

A lot of users like emulators, because they can replay the games they used to play many years ago. The most surprising is that there are lots of games that everyone knows, which are not reprogrammed on today's computers.

Retro gaming was the main reason for which I decided to program a CHIP-8 emulator. Moreover, CHIP-8 produces games that look like Pong and its variants, and I did not find any other emulator, nor computer, producing this kind of games. Note that this emulator emulates one of the oldest home computer emulated today.

1.2 - CHIP8 programs and memory

All the CHIP-8 programs start at address 200h (except those of the ETI-660, which start at the non-standard address of 600h). This is due to the interpreter, which used to reside in the 000h-1FFh area on the Telmac and the COSMAC VIP.

The entire memory is accessible and byte addressable. As the instructions are 16 bits long, their addresses are usually even (if some 8-bit data are inserted into the code, the instructions may become odd-addressed).

SCHIP programs run like CHIP-8 programs. The only differences between them are some new instructions in the SCHIP mode. Some of the new instructions work under both CHIP-8 and SCHIP modes. Some others work only in SCHIP mode.

1.3 - Registers

The data registers:

They are 16, all 8 bits wide, and named V0VF. VF is used as carry (when using arithmetic instructions) and collision detector (when drawing sprites). Refer to the instructions section concerning the collisions in SCHIP mode.

The address register:

There is only one named I, 16 bits wide. As the memory is 4Kb, the interpreter uses only its 12 low bits. The remaining 4 could be set using the LOAD FONT instruction as the font was located at address 8110.

The timers:

There are two timers. One is the delay timer, and the other the sound timer. Both are 8 bits wide and down-count about 60 times per second when non- zero. The speaker will beep while the sound timer is non zero. The delay timer is generally used to make delay loops.

The stack:

It has 16 levels, allowing 16 successive subroutine calls. This may not apply to the original CHIP-8 as no documentation was found on the stack.

1.4 - Graphics

The original resolution of CHIP-8 is 64 x 32 pixels. Some modified machines could have a 64 x 48 or 64 x 64 resolution, and the TELMAC also had a second version of CHIP-8 called CHIP-82 that used a 64 x 64 resolution. As no program was found using the extended ones, CHIP8 will only use the 64 x 32 resolution.

Graphics are drawn as 8 x 115 sprites (they are byte coded). The origin of the screen is the upper left corner. All the coordinates are positive, start at 0, and are calculated modulo 64 for X, and 32 for Y when drawing sprites.

All drawings are done in XOR mode. When one or more pixels are erased while a sprite is drawn, the VF register is set to 01, otherwise 00.

CHIP8 has a 4 x 5 pixels hexadecimal font to draw characters. These ones are 0-9 and A-F.

The SCHIP mode is an extended CHIP-8 mode. It provides an extended graphic resolution of 128 x 64 pixels. When activated, pixels coordinates ranges are 00h-7Fh for X (0-127), 00h-3Fh for Y (0-63) and are calculated modulo 128 for X and modulo 64 for Y. It is important to note that a pixel of the 64 x 32 resolution will appear twice bigger than one of the extended resolution.

The SCHIP mode provides an 8 x 10 decimal character font, and a 16 x 16 sprite. Their drawing modes are the same than in CHIP-8. Both of the fonts are usable in 64 x 32 and 128 x 64 resolutions. Depending on the resolution used, the size of the characters will change because of the size of the pixels

1.5 - Instructions

NNN is an address,

KK is an 8 bit constant

X and Y are two 4 bits constants

0NNN Call 1802 machine code program at NNN (not implemented)

00CN Scroll down N lines (***)

00FB Scroll 4 pixels right (***)

00FC Scroll 4 pixels left (***)

00FD Quit the emulator (***)

00FE Set CHIP-8 graphic mode (***)

00FF Set SCHIP graphic mode (***)

00E0 Erase the screen

00EE Return from a CHIP-8 sub-routine

1NNN Jump to NNN

2NNN Call CHIP-8 sub-routine at NNN (16 successive calls max)

3XKK Skip next instruction if VX == KK

4XKK Skip next instruction if VX != KK

5XY0 Skip next instruction if VX == VY

6XKK VX = KK

7XKK VX = VX + KK

8XY0 VX = VY

8XY1 VX = VX OR VY

8XY2 VX = VX AND VY

8XY3 VX = VX XOR VY (*)

8XY4 VX = VX + VY, VF = carry

8XY5 VX = VX - VY, VF = not borrow (**)

8XY6 VX = VX SHR 1 (VX=VX/2), VF = carry

8XY7 VX = VY - VX, VF = not borrow (*) (**)

8XYE VX = VX SHL 1 (VX=VX*2), VF = carry

9XY0 Skip next instruction if VX != VY

ANNN I = NNN

BNNN Jump to NNN + V0

CXKK VX = Random number AND KK

DXYN Draws a sprite at (VX,VY) starting at M(I). VF = collision.

If N=0, draws the 16 x 16 sprite, else an 8 x N sprite.

EX9E Skip next instruction if key VX pressed

EXA1 Skip next instruction if key VX not pressed

FX07 VX = Delay timer

FX0A Waits a keypress and stores it in VX

FX15 Delay timer = VX

FX18 Sound timer = VX

FX1E I = I + VX

FX29 I points to the 4 x 5 font sprite of hex char in VX

FX33 Store BCD representation of VX in M(I)M(I+2)

FX55 Save V0VX in memory starting at M(I)

FX65 Load V0VX from memory starting at M(I)

FX75 Save V0VX (X<8) in the HP48 flags (***)

FX85 Load V0VX (X<8) from the HP48 flags (***)

(*): Used to be undocumented (but functional) in the original docs.

(**): When you do VX - VY, VF is set to the negation of the borrow. This means that if VX is superior or equal to VY, VF will be set to 01, as the borrow is 0. If VX is inferior to VY, VF is set to 00, as the borrow is 1.

(***): SCHIP Instruction. Can be used in CHIP8 graphic mode.

NOTES:

As the interpreter is emulated, all the 0NNN instructions cannot be implemented. Only 00E0, 00EE and the SCHIP instructions are available.

The SCHIP graphic instructions can be used in CHIP-8 graphic mode. This, a 4 pixels left or right scrolling in SCHIP graphic mode will be interpreted as a TWO PIXELS scroll in CHIP-8 mode. Remember that a segment of 4 pixels in 128 x 64 resolution has the same size than a 2 pixels one in 64 x 32 resolution.

Drawing the 16 x 16 pixels SCHIP sprite in CHIP-8 mode will display an 8 x 16 sprite (because only the first 16 bytes of this sprite will be used). The result is that a 16 x 16 SCHIP sprite will not be correctly displayed in the 64 x 32 resolution. However, this instruction allows drawing an 8 x 16 sprite, which cannot be performed with the standard CHIP-8 drawing instruction.

We saw that a pixel of the 64 x 32 resolution is twice bigger than one of the 128 x 64 one. Another consequence of this is that the vertical scrolling instruction is different in the 64 x 32 resolution. In this one, it will scroll half the lines it would have scrolled in SCHIP mode. Note that if the number of lines to scroll is ODD, the scroll will be performed with a half-pixel shift !

1.6 - Keyboard

Most of the original CHIP-8 programs used a 16 key hex keyboard, which looked like this:

C

D

E

A

B

F

This keyboard is emulated like this on the PC (using the keypad):

Num

C

D

E

F

B

A

To switch between the VIDEO and the LCD mode, press V.

To perform a SNAPSHOT, press Tab.

To reset CHIP8, press BACKSPACE.

To capture the screen, press C.

To turn sound ON/OFF, press S.

To quit CHIP8, press Esc.

To make a pause, press P.

1.7 - CHIP8/SCHIP games and programs

The list of CHIP-8 and SCHIP programs has been removed, due to their increasing quantity. The file called GAMES.TXT contains the descriptions of all the programs given with this emulator. If you want to add new games to the emulator, send them via Email.

2 - The CHIP8 emulator

2.1 - CHIP8 configuration

The SETUP utility allows you to configure CHIP8. You can:

Choose the type of display (TEXT or VGA),

Enable or disable the beeper by default,

Enable or disable the sound while loading a program,

Change the colour of the screen border,

Change the colours of the 'black' and 'white' pixels.

To configure CHIP8, run SETUP. Use the direction keys to configure the emulator: the vertical directions select the parameter to modify, and the horizontal directions modifies it. To save the configuration, press ENTER on 'SAVE CONFIG'. The configuration is saved in the CHIP8.INI file.

Note that the VGA mode can provide two display modes: LCD, which draws the pixels like those of an old LCD screen, and VIDEO which draws them normally.

2.2 - Using CHIP8

If you run CHIP8 with no argument, the emulator runs BOOT-128.

BOOT-128 is a small 128 bytes program (99% in CHIP-8) placed in 100-180. It allows you to type a hexadecimal CHIP-8 program. Don't forget that this program uses the original CHIP-8 keyboard, so you may have some confusions with the PC keyboard

BOOT-128 is accessible by performing a jump in 100. Note that BOOT-128 is not the original CHIP-8 boot (which is written in 1802 machine code).

To run the program you typed using BOOT-128, RESET the emulator by pressing Backspace. Note that BOOT-128 doesn't allow you to make corrections if you typed an incorrect code.

To run a CHIP-8 program, type CHIP8 Program_Name. You can specify the path of the program. The emulator loads it (an error message will appear if it is not found). Once loaded, the emulation starts.

Programs for the ETI-660 computer used to be located in 600-FFF. To make them usable by the emulator, type CHIP8 Program_Name 600

You can perform a text screen capture by pressing C. This capture will be saved in a file called SCREEN. Refer to section 1.6 for the keys. This is only available in CHIP-8 mode.

Concerning the VGA display, you can put the display mode in VIDEO or in VGA whenever you want by pressing V.

You can also make a SNAPSHOT of the current emulation by pressing Tab. By default, SNAPSHOTs are saved in a file called SNAPSHOT, which can be renamed. SNAPSHOTS are images containing the entire status of the emulator. They allow you to save the emulation status, do whatever you want (for example quit the emulator), and then continue the saved emulation.

SNAPSHOTs are usable by typing CHIP8 -s SnapshotName

2.3 - The FIX_CHIP utility

On the HP48, CHIP-8 programs are stored as strings, which are special objects. If you transfer a program and try to run it under CHIP8, it will never run, because it has to be converted to the PC format with FIX_CHIP.

To do this, type FIX_CHIP SourceName TargetName

Note that lots of games given with the emulator are imported from HP48.

As far as I know, the only original CHIP-8 games are KALEID, TANK, UFO (dated 1977), and WIPEOFF.

2.4 - The UNCHIP disassembler

UNCHIP is a little CHIP-8/SCHIP disassembler made to help you in programming games, making changes in some programs (bugs, improvements).

To use it, type UNCHIP SourceName TargetName. SourceName is the name of the program you want to disassemble, TargetName is the name of the source you will obtain. If you want to see the contents of a SNAPSHOT file, UNCHIP will not disassemble it as a program, but will give you the data of the snapshot. To do this, type UNCHIP -s SourceName TargetName

UNCHIP can also take two optional arguments: -l and -o.

-l is used to keep all the instructions addresses (else, only those where CHIP8 makes jumps, sub-routine calls, or a reference for register I are kept).

-o is used to keep the OPCs (CHIP8 hexadecimal instructions).

You can combine these arguments as you wish:

UNCHIP PONG PONG.SRC -L -O

UNCHIP TETRIS TETRIS.SRC -O

UNCHIP UFO UFO.SRC -O -L

2.5 - The BINHEX and HEXBIN utilities

These two programs are made to simplify the programmer's life in programming CHIP-8 games. They allow converting binary files into hexadecimal files (BINHEX), and hexadecimal files into binary files (HEXBIN). Both require two arguments: the names of the source and the target.

For example, to convert PONG in a hexadecimal file named PONG.TXT, type BINHEX PONG PONG.TXT. To convert PONG.TXT in a binary file, type HEXBIN PONG.TXT PONG

These utilities are very useful to make corrections or improvements in CHIP-8 programs. Instead of using UNCHIP and reassembling everything, just convert the file in hexadecimal, modify it, and re-convert it to binary. This is the way I used to improve PONG in less than 3 minutes.

Note that BINHEX accepts comments, so you can add some text to your file if you put the ';' character before them. Everything placed after this character will be ignored.

Little astute:

If you want to add several instructions somewhere in a program WITHOUT having to change all the jump instructions:

1. Replace the instruction where you want to put several ones by a call to a subroutine placed at the end of the program.

2. Program the subroutine. Pay an important attention to the registers it modifies. All the registers must not be altered once the subroutine will have executed. Save them if needed.

3. Place at the end of subroutine the instruction which was replaced by the call to the subroutine, and put a RETURN instruction.

This astute cannot be used everywhere. For instance, you cannot use it if your subroutine modifies register I. If the sound timer is currently used, the beeper will only stop beeping earlier than before, because of the time taken by the execution of the subroutine

2.6 - The CHIPPER assembler

CHIPPER is a powerful symbolic CHIP-8 (as well as CHIP48 and SCHIP) assembler written by Christian Egeberg. A complete documentation is given in the directory of this program. Don't forget to put OPTION BINARY at the beginning of your sources, or your programs won't be usable on your PC. You can also put ALIGN OFF to save some space. This option allows putting some 8-bit data, instead of 16 bit. If you don't put this option, any 8-bit data will be converted to 16-bit data.

3 - Contacts

If you want to contact me, send an Email to the following address:

winter@worldnet.net

I will answer your questions in the time I have to, and take the time to appreciate your suggestions.

I personally thank the following people :

Andreas Gustafsson, author of CHIP48 for the HP48, for his great detailed docs of CHIP-8.

Erik Bryntse, author of SCHIP, for the HP48, for his SCHIP docs.

Carolyn (alias 'Steve'), for her encouragements and patience.

Massimiliano Zattera, for his keyboard routine which allows to make a real emulation of the original Chip-8 keyboard.

Woodrow Hinkleman, for providing help with a real COSMAC VIP computer, and for providing original CHIP-8 and ROM listings.

4 - POSTWARE

This software is released as a POSTWARE. A POSTWARE is like a FREEWARE, except that you have to send an email to the author if you decide to use this software. The minimum you have say is who you are. You can also add something else like what you think about this emulator, how much you use it, your own appreciations and suggestions, etc.

The rules of the FREEWARE means that:

You MUST obtain your copy FREELY.

You can give it ONLY IN ITS ORIGINAL INTEGRITY: you MUST NOT ADD, ERASE, or MODIFY any of its files (the games are only added to the software as I did not program all of them).

You MUST NOT SELL it

You MUST NOT distribute it for any charge excepted:

The shipping charges,

The price of the media (diskette, tape) of THE copy you GIVE.

If you require some money to distribute it, you MUST obtain my express written permission.

This software may be distributed on CDROM, diskette, tape or free server ONLY if it agrees with this entire section.

[Document last revised 22 NOV 1998]



Politica de confidentialitate | Termeni si conditii de utilizare



DISTRIBUIE DOCUMENTUL

Comentarii


Vizualizari: 1740
Importanta: rank

Comenteaza documentul:

Te rugam sa te autentifici sau sa iti faci cont pentru a putea comenta

Creaza cont nou

Termeni si conditii de utilizare | Contact
© SCRIGROUP 2024 . All rights reserved