-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit 64d842e
Showing
24 changed files
with
8,349 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 not shown.
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
*BASICPAGE=&1900*FX21CLOSE#0:CHAIN "AVIA" | ||
|
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
Oops, something went wrong.