mirror of
https://github.com/whscullin/apple1js.git
synced 2025-01-29 18:31:59 +00:00
Make tape global in config
This commit is contained in:
parent
7a3cff10ec
commit
786fa17329
@ -22,6 +22,9 @@
|
||||
"browser": true,
|
||||
"es6": true
|
||||
},
|
||||
"globals": {
|
||||
"tapes": true
|
||||
},
|
||||
"parserOptions": {
|
||||
"sourceType": "module"
|
||||
},
|
||||
|
@ -2,8 +2,6 @@
|
||||
// Who said that there was no graphics capability on the Apple 1?
|
||||
// http://www.applefritter.com/node/24600#comment-60100
|
||||
|
||||
/*globals tapes: true */
|
||||
|
||||
/*
|
||||
C100R
|
||||
0280.0FFFR
|
||||
|
@ -1,5 +1,3 @@
|
||||
/*globals tapes: true */
|
||||
|
||||
tapes['Applesoft'] = {
|
||||
script: 'C100R\n6000.7ECDR\n6000R\n',
|
||||
tracks: [[
|
||||
|
@ -1,5 +1,3 @@
|
||||
/*globals tapes: true */
|
||||
|
||||
tapes['BASIC'] = {
|
||||
script: 'C100R\nE000.EFFFR\nE000R\n',
|
||||
tracks: [[
|
||||
|
@ -5,8 +5,6 @@ E2B3R
|
||||
RUN
|
||||
*/
|
||||
|
||||
/*globals tapes: true */
|
||||
|
||||
tapes['Blackjack'] = {
|
||||
script: 'C100R\n004A.00FFR 0800.0FFFR\nE2B3R\nRUN\n',
|
||||
tracks: [[ // 004A.00FF
|
||||
|
@ -5,8 +5,6 @@ E2B3R
|
||||
RUN
|
||||
*/
|
||||
|
||||
/*globals tapes: true */
|
||||
|
||||
tapes['Checkers'] = {
|
||||
script: 'C100R\n004A.00FFR 0300.0FFFR\nE2B3R\nRUN\n',
|
||||
tracks: [[ // 004A.00FF
|
||||
|
@ -1,5 +1,3 @@
|
||||
/*globals tapes: true */
|
||||
|
||||
tapes['Codebreaker'] = {
|
||||
script: 'C100R\n0280.0BFFR E000.EFFFR\n280R\n',
|
||||
tracks: [[
|
||||
|
@ -5,8 +5,6 @@ E2B3R
|
||||
RUN
|
||||
*/
|
||||
|
||||
/*globals tapes: true */
|
||||
|
||||
tapes['Hamurabi'] = {
|
||||
script: 'C100R\n004A.00FFR 0300.0FFFR\nE2B3R\nRUN\n',
|
||||
tracks: [[ // 004A.00FF
|
||||
|
@ -10,8 +10,6 @@ C100R
|
||||
2000R
|
||||
*/
|
||||
|
||||
/*globals tapes: true */
|
||||
|
||||
tapes['Life'] = {
|
||||
script: 'C100R\n2000.21B7R\n2000R\n',
|
||||
tracks: [[ // 2000.3FFFR
|
||||
|
@ -13,8 +13,6 @@ C100R
|
||||
300R
|
||||
*/
|
||||
|
||||
/*globals tapes: true */
|
||||
|
||||
tapes['Little Tower'] = {
|
||||
script: 'C100R\n0300.14CDR\n300R\n',
|
||||
tracks: [[ // 0300.14CD
|
||||
|
@ -4,8 +4,6 @@ C100R
|
||||
300R
|
||||
*/
|
||||
|
||||
/*globals tapes: true */
|
||||
|
||||
tapes['Lunar Lander'] = {
|
||||
script: 'C100R\n0300.09B8R\n300R\n',
|
||||
tracks: [[ // 0300.09B8
|
||||
|
@ -5,8 +5,6 @@ E2B3R
|
||||
RUN
|
||||
*/
|
||||
|
||||
/*globals tapes: true */
|
||||
|
||||
tapes['Matrix'] = {
|
||||
script: 'C100R\n004A.00FFR 0800.0FFFR\nE2B3R\nRUN\n',
|
||||
tracks: [[ // 004A.00FF
|
||||
|
@ -4,8 +4,6 @@ C100R
|
||||
300R
|
||||
*/
|
||||
|
||||
/*globals tapes: true */
|
||||
|
||||
tapes['Microchess'] = {
|
||||
script: 'C100R\n0300.0BC7R\n300R\n',
|
||||
tracks: [[ // 0300.0BC7
|
||||
|
@ -4,8 +4,6 @@ C100R
|
||||
F3DR
|
||||
*/
|
||||
|
||||
/*globals tapes: true */
|
||||
|
||||
tapes['Monitor/Disassembler'] = {
|
||||
script: 'C100R\n0800.0FFFR\nF3DR\n',
|
||||
tracks: [[ // 0800.0FFF
|
||||
|
@ -25,8 +25,6 @@
|
||||
*
|
||||
*/
|
||||
|
||||
/*globals tapes: true */
|
||||
|
||||
tapes['15 Puzzle'] = {
|
||||
script: 'C100R\n0300.06E5R\n0300R\n',
|
||||
tracks: [[
|
||||
|
@ -5,8 +5,6 @@ E2B3R
|
||||
RUN
|
||||
*/
|
||||
|
||||
/*globals tapes: true */
|
||||
|
||||
tapes['Slots'] = {
|
||||
script: 'C100R\n004A.00FFR 0300.0FFFR\nE2B3R\nRUN\n',
|
||||
tracks: [[ // 004A.00FF
|
||||
|
@ -5,8 +5,6 @@ E2B3R
|
||||
RUN
|
||||
*/
|
||||
|
||||
/*globals tapes: true */
|
||||
|
||||
tapes['Star Trek'] = {
|
||||
script: 'C100R\n004A.00FFR 0300.0FFFR\nE2B3R\nRUN\n',
|
||||
tracks: [[ // 004A.00FF
|
||||
|
@ -5,8 +5,6 @@ E2B3R
|
||||
RUN
|
||||
*/
|
||||
|
||||
/*globals tapes: true */
|
||||
|
||||
tapes['Star Trek 2003'] = {
|
||||
script: 'C100R\n004A.00FFR 0300.3FFFR\nE2B3R\nRUN\n',
|
||||
tracks: [[ // 004A.00FF
|
||||
|
@ -1,5 +1,3 @@
|
||||
/*globals tapes: true */
|
||||
|
||||
tapes['Volksforth'] = {
|
||||
script: 'C100R\n1000.449FR\n1000R\n',
|
||||
tracks: [[
|
||||
|
@ -5,8 +5,6 @@ E2B3R
|
||||
RUN
|
||||
*/
|
||||
|
||||
/*globals tapes: true */
|
||||
|
||||
tapes['Wumpus'] = {
|
||||
script: 'C100R\n004A.00FFR 0300.033FR 0400.3FFFR\nE2B3R\nRUN\n',
|
||||
tracks: [[ // 004A.00FF
|
||||
|
@ -5,8 +5,6 @@ E2B3R
|
||||
RUN
|
||||
*/
|
||||
|
||||
/*globals tapes: true */
|
||||
|
||||
tapes['Wumpus'] = {
|
||||
script: 'C100R\n004A.00FFR 0300.0FFFR\nE2B3R\nRUN\n',
|
||||
tracks: [[ // 004A.00FF
|
||||
|
Loading…
x
Reference in New Issue
Block a user