Skip to content

Commit 64d842e

Browse files
committed
Initial commit
0 parents  commit 64d842e

File tree

24 files changed

+8349
-0
lines changed

24 files changed

+8349
-0
lines changed

.gitattributes

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
# Auto detect text files and perform LF normalization
2+
* text=auto
3+
4+
# Custom for Visual Studio
5+
*.cs diff=csharp
6+
7+
# Standard to msysgit
8+
*.doc diff=astextplain
9+
*.DOC diff=astextplain
10+
*.docx diff=astextplain
11+
*.DOCX diff=astextplain
12+
*.dot diff=astextplain
13+
*.DOT diff=astextplain
14+
*.pdf diff=astextplain
15+
*.PDF diff=astextplain
16+
*.rtf diff=astextplain
17+
*.RTF diff=astextplain

.gitignore

+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
# Windows thumbnail cache files
2+
Thumbs.db
3+
ehthumbs.db
4+
ehthumbs_vista.db
5+
6+
# Folder config file
7+
Desktop.ini
8+
9+
# Recycle Bin used on file shares
10+
$RECYCLE.BIN/
11+
12+
# Windows Installer files
13+
*.cab
14+
*.msi
15+
*.msm
16+
*.msp
17+
18+
# Windows shortcuts
19+
*.lnk
20+
21+
# =========================
22+
# Operating System Files
23+
# =========================
24+
.vscode/tasks.json
25+
compile.txt
26+
aviator-beebasm.code-workspace
27+
run.bat

1-source-files/README.md

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
# Source files for the BBC Micro disc version of Aviator
2+
3+
This folder contains the source files for the BBC Micro disc version of Aviator.
4+
5+
* [basic-programs](basic-programs) contains any BASIC programs to be included on the final game disc
6+
7+
* [boot-files](boot-files) contains any !BOOT files to be included on the final game disc
8+
9+
* [images](images) contains the image binaries for the title screen and dashboard
10+
11+
* [main-sources](main-sources) contains the annotated source code
12+
13+
---
14+
15+
_Mark Moxon_
6.89 KB
Binary file not shown.
992 Bytes
Binary file not shown.
1.98 KB
Binary file not shown.

1-source-files/boot-files/$.!BOOT.bin

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
*BASICPAGE=&1900*FX21CLOSE#0:CHAIN "AVIA"

1-source-files/images/$.DASHBD.bin

3.75 KB
Binary file not shown.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
\ ******************************************************************************
2+
\
3+
\ AVIATOR DISC IMAGE SCRIPT
4+
\
5+
\ Aviator was written by Geoffrey J Crammond and is copyright Acornsoft 1984
6+
\
7+
\ ------------------------------------------------------------------------------
8+
\
9+
\ This source file produces the following SSD disc image:
10+
\
11+
\ * aviator-bbcmicro-co-uk.ssd
12+
\
13+
\ This can be loaded into an emulator or a real BBC Micro.
14+
\
15+
\ ******************************************************************************
16+
17+
PUTFILE "1-source-files/boot-files/$.!BOOT.bin", "!BOOT", &FFFFFF, &FFFFFF
18+
PUTFILE "1-source-files/basic-programs/$.AVIA.bin", "AVIA", &FF1900, &FF8023
19+
PUTFILE "1-source-files/basic-programs/$.AVIA1.bin", "AVIA1", &FF1900, &FF8023
20+
PUTFILE "1-source-files/basic-programs/$.AVIATOR.bin", "AVIATOR", &FF1900, &FF8023
21+
PUTFILE "1-source-files/images/$.DASHBD.bin", "DASHBD", &FF7100, &FF7100
22+
PUTFILE "3-assembled-output/AVIA.bin", "AVIA?", &FF1100, &FF5E00

0 commit comments

Comments
 (0)