Skip to content

Commit

Permalink
Shell welcome document
Browse files Browse the repository at this point in the history
  • Loading branch information
Paul Robson committed Jun 4, 2024
1 parent 3a5f883 commit 744dcfa
Show file tree
Hide file tree
Showing 4 changed files with 101 additions and 9 deletions.
17 changes: 8 additions & 9 deletions basic/test.bsc
Original file line number Diff line number Diff line change
@@ -1,10 +1,9 @@
'
' error test
'
a$ = "Hello world"+chr$(13)+chr$(10)
for i = 1 to len(a$)
c = asc(mid$(a$,i,1))
poke $FF04,c
poke $FF01,10
poke $FF00,1

size = 16
w = 320 \ size
h = 240 \ size
for x = 0 to w-1
for y = 0 to h-1
rect x*size,y*size solid ink rand(15) by size,size
next
next
Binary file added documents/release/welcome/Neo6502-a.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
91 changes: 91 additions & 0 deletions documents/release/welcome/welcome.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,91 @@
# What is the Neo6502 ?
xx![img](Neo6502-a.jpg)
# Read this before Purchasing

## What do you need

xx

### USB Hub (Olimex notes) and issues.

xx

### Optional Gamepad (Olimex notes) compatibility issues.

xx

### A-A cable or Programmer

xx

### Keyboard

xx

### HDMI display

xx

### USB Key

xx

### Optional Sound Device

xx

### SD Card as an option but not advised

xx
# The boards (brief mention of A and LCD screen)
xx
## A guided tour
xx
## Board parts
xx
## Connectors on the back
xx
## UEXT
xx
## 6502 connector
xx
##
xx
# Getting the board running
xx
## Setting the DIP switches
xx
## Specific to Morpheus but generalisable
xx
## Getting to boot up
xx
## What does the boot mean
xx
## Doing a Catalogue
xx
## Running a simple BASIC program
xx
### Entering a simple program with line numbers
xx
### Using the editor
xx
### Saving Loading and Catting
xx
# Where Next
xx
## Languages available
xx
## Other software
xx
## Wiki
xx
## Discord
xx
## Facebook
xx
## BASIC & API Documents (at present)
xx
## BASIC , C and Pascal examples
xx
## The Facebook series
xx
2 changes: 2 additions & 0 deletions release/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,8 @@ all: documentation
# ***************************************************************************************

documentation:
# generate Welcome PDF (requires 'pandoc')
cd $(DOCDIR)welcome ; pandoc welcome.md -o $(DOCDIR)welcome.pdf
# generate BASIC PDF (requires 'pandoc')
pandoc $(DOCDIR)basic.md -o $(DOCDIR)basic.pdf
# generate API PDF (requires 'pandoc')
Expand Down

0 comments on commit 744dcfa

Please sign in to comment.