This shows you the differences between two versions of the page.
Next revision | Previous revision | ||
6502_computer [2024/06/11 13:00] – created austin | 6502_computer [2024/09/22 22:08] (current) – external edit 127.0.0.1 | ||
---|---|---|---|
Line 1: | Line 1: | ||
- | == 6502 Computer == | + | ====== 6502 Computer |
I started with a Ben Eater kit. Here are my variations. | I started with a Ben Eater kit. Here are my variations. | ||
+ | |||
+ | {{ : | ||
+ | |||
+ | My custom Monitor with MSBASIC and FAT32 SD card support: Source Code: https:// | ||
===== Video Card ===== | ===== Video Card ===== | ||
- | Currently using an ESP32 as a video card using FabGL. | + | Currently using an ESP32 as a video card using FabGL. |
It is wired through a 6522 VIA. I couldn' | It is wired through a 6522 VIA. I couldn' | ||
Line 10: | Line 14: | ||
Source Code: https:// | Source Code: https:// | ||
- | ====== RAM ====== | + | ===== RAM ===== |
- | I have 28k available for use rather than the 16k in Ben's Design. | + | I have 28k available for use rather than the 16k in Ben's Design. |
===== SD Card Storage ====== | ===== SD Card Storage ====== | ||
+ | I Added a second VIA addressed at 7A00 and have a microsd card SPI adapter plugged in there. | ||
+ | {{ : | ||
===== Monitor ====== | ===== Monitor ====== | ||
+ | It is a custom monitor from scratch that I later incorporated other peoples sdcard code, memtest and MSBASIC. | ||
+ | |||
+ | * B - Launches MS BASIC 2 | ||
+ | * C - Clears the screen | ||
+ | * D - Displays ASCII text starting at 0600 until null character is found. | ||
+ | * F - File listing. | ||
+ | * H - Hex dump a page from memory. Requires one argument of the page in HEX. Example: H FF | ||
+ | * L - Load file from sdcard to memory starting at address 0600. Can be filename in root or path to nested file. Example: L TEST\TEST\TEST.TXT | ||
+ | * M - Run memory test | ||
+ | * R - Runs a program in memory starting at specified address. | ||
+ | * S - Store hex values to memory. | ||
===== MSBASIC ====== | ===== MSBASIC ====== | ||
+ | It is based on this code: https:// | ||
+ | |||
+ | I modified the code to handle backspaces for editing. | ||
+ | |||
+ | Added tokens: | ||
+ | * CLS - Clears the screen. | ||
+ | * LOAD - Loads a file from SD card with the path to file. | ||
+ | * BGCOLOR - sets the background color to the 2 Digit ANSI color (40-49). | ||
+ | * FGCOLOR - sets the foreground color to the 2 Digit ANSI color (30-39). | ||
+ | * LOCATE - move cursor to location on screen, Line and Column separated by a comma. | ||
+ | * SETTEXT - sets the text features. | ||
+ | - 15 BOLD | ||
+ | - 8 Italic | ||
+ | - 4 Underlined | ||
+ | - 2 Blink | ||
+ | - 1 Inverted | ||
===== Keyboard ====== | ===== Keyboard ====== | ||
+ | |||
+ | I started with Ben's keyboard interface and technically I still have it there but I found it would work sometimes and not others. | ||