permacomputing

Source repository for the main permacomputing wiki site
git clone http://git.permacomputing.net/repos/permacomputing.git # read-only access
Log | Files | Refs

commit 27ee9194193a377743f9f1519a0ebee0e95ef8ad
parent 30ab15258f6397882fa3044da726155e8a166734
Author: viznut_web <viznut_web@web>
Date:   Sat, 20 Aug 2022 14:04:50 +0200

add context

Diffstat:
MChip8.mdwn | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Chip8.mdwn b/Chip8.mdwn @@ -1,4 +1,4 @@ -CHIP-8 was created by RCA engineer Joe Weisbecker in 1977 for the COSMAC VIP microcomputer. The Chip-8 language is capable of accessing up to 4KB(4096 bytes) of RAM, from location 0x000 to 0xFFF(0-4095). The first 512 bytes, from 0x000 to 0x1FF, are where the original interpreter was located, and should not be used by programs. +**CHIP-8** is a [[virtual machine]] created by RCA engineer Joe Weisbecker in 1977 for the COSMAC VIP microcomputer. The Chip-8 language is capable of accessing up to 4KB(4096 bytes) of RAM, from location 0x000 to 0xFFF(0-4095). The first 512 bytes, from 0x000 to 0x1FF, are where the original interpreter was located, and should not be used by programs. The original implementation of the Chip-8 language includes 36 different instructions, including math, graphics, and flow control functions.