diff --git a/basic/test.bsc b/basic/test.bsc index 58c9cd76..50b4df92 100644 --- a/basic/test.bsc +++ b/basic/test.bsc @@ -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 \ No newline at end of file diff --git a/documents/release/welcome/Neo6502-a.jpg b/documents/release/welcome/Neo6502-a.jpg new file mode 100644 index 00000000..84c01e51 Binary files /dev/null and b/documents/release/welcome/Neo6502-a.jpg differ diff --git a/documents/release/welcome/welcome.md b/documents/release/welcome/welcome.md new file mode 100644 index 00000000..6b43b1a0 --- /dev/null +++ b/documents/release/welcome/welcome.md @@ -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 \ No newline at end of file diff --git a/release/Makefile b/release/Makefile index 1f371a5d..181a73aa 100644 --- a/release/Makefile +++ b/release/Makefile @@ -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')