Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
markmoxon committed Sep 7, 2021
0 parents commit 64d842e
Show file tree
Hide file tree
Showing 24 changed files with 8,349 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# Auto detect text files and perform LF normalization
* text=auto

# Custom for Visual Studio
*.cs diff=csharp

# Standard to msysgit
*.doc diff=astextplain
*.DOC diff=astextplain
*.docx diff=astextplain
*.DOCX diff=astextplain
*.dot diff=astextplain
*.DOT diff=astextplain
*.pdf diff=astextplain
*.PDF diff=astextplain
*.rtf diff=astextplain
*.RTF diff=astextplain
27 changes: 27 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
# Windows thumbnail cache files
Thumbs.db
ehthumbs.db
ehthumbs_vista.db

# Folder config file
Desktop.ini

# Recycle Bin used on file shares
$RECYCLE.BIN/

# Windows Installer files
*.cab
*.msi
*.msm
*.msp

# Windows shortcuts
*.lnk

# =========================
# Operating System Files
# =========================
.vscode/tasks.json
compile.txt
aviator-beebasm.code-workspace
run.bat
15 changes: 15 additions & 0 deletions 1-source-files/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
# Source files for the BBC Micro disc version of Aviator

This folder contains the source files for the BBC Micro disc version of Aviator.

* [basic-programs](basic-programs) contains any BASIC programs to be included on the final game disc

* [boot-files](boot-files) contains any !BOOT files to be included on the final game disc

* [images](images) contains the image binaries for the title screen and dashboard

* [main-sources](main-sources) contains the annotated source code

---

_Mark Moxon_
Binary file added 1-source-files/basic-programs/$.AVIA.bin
Binary file not shown.
Binary file added 1-source-files/basic-programs/$.AVIA1.bin
Binary file not shown.
Binary file added 1-source-files/basic-programs/$.AVIATOR.bin
Binary file not shown.
1 change: 1 addition & 0 deletions 1-source-files/boot-files/$.!BOOT.bin
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
*BASICPAGE=&1900*FX21CLOSE#0:CHAIN "AVIA"
Expand Down
Binary file added 1-source-files/images/$.DASHBD.bin
Binary file not shown.
22 changes: 22 additions & 0 deletions 1-source-files/main-sources/aviator-disc.asm
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
\ ******************************************************************************
\
\ AVIATOR DISC IMAGE SCRIPT
\
\ Aviator was written by Geoffrey J Crammond and is copyright Acornsoft 1984
\
\ ------------------------------------------------------------------------------
\
\ This source file produces the following SSD disc image:
\
\ * aviator-bbcmicro-co-uk.ssd
\
\ This can be loaded into an emulator or a real BBC Micro.
\
\ ******************************************************************************

PUTFILE "1-source-files/boot-files/$.!BOOT.bin", "!BOOT", &FFFFFF, &FFFFFF
PUTFILE "1-source-files/basic-programs/$.AVIA.bin", "AVIA", &FF1900, &FF8023
PUTFILE "1-source-files/basic-programs/$.AVIA1.bin", "AVIA1", &FF1900, &FF8023
PUTFILE "1-source-files/basic-programs/$.AVIATOR.bin", "AVIATOR", &FF1900, &FF8023
PUTFILE "1-source-files/images/$.DASHBD.bin", "DASHBD", &FF7100, &FF7100
PUTFILE "3-assembled-output/AVIA.bin", "AVIA?", &FF1100, &FF5E00
Loading

0 comments on commit 64d842e

Please sign in to comment.