mirror of
https://github.com/deater/dos33fsprogs.git
synced 2025-03-16 08:29:46 +00:00
Merge branch 'master' of git://github.com/deater/dos33fsprogs
This commit is contained in:
commit
881fb31990
@ -5,7 +5,7 @@
|
||||
#include "version.h"
|
||||
|
||||
/* TODO */
|
||||
/* match lowecase tokens as well as upper case ones */
|
||||
/* match lowercase tokens as well as upper case ones */
|
||||
|
||||
/* Info from http://docs.info.apple.com/article.html?coll=ap&artnum=57 */
|
||||
|
||||
@ -176,9 +176,24 @@ int main(int argc, char **argv) {
|
||||
line++;
|
||||
if (line_ptr==NULL) break;
|
||||
|
||||
/* VMW extension, skip between 'if 0 and 'endif */
|
||||
if (line_ptr[0]=='\'') {
|
||||
if (!strncmp(line_ptr,"\'.if 0",6)) {
|
||||
while(1) {
|
||||
line_ptr=fgets(input_line,BUFSIZ,stdin);
|
||||
line++;
|
||||
if (line_ptr==NULL) break;
|
||||
if (!strncmp(line_ptr,"\'.endif",7)) break;
|
||||
}
|
||||
}
|
||||
}
|
||||
if (line_ptr==NULL) break;
|
||||
|
||||
/* VMW extension: use leading ' as a comment char */
|
||||
if (line_ptr[0]=='\'') continue;
|
||||
|
||||
|
||||
|
||||
/* skip empty lines */
|
||||
if (line_ptr[0]=='\n') continue;
|
||||
|
||||
|
15
glados3.3/Makefile
Normal file
15
glados3.3/Makefile
Normal file
@ -0,0 +1,15 @@
|
||||
DOS33 = ../dos33fs-utils/dos33
|
||||
TXT2BAS = ../asoft_basic-utils/tokenize_asoft
|
||||
MAKEB = ../dos33fs-utils/make_b
|
||||
|
||||
all: glados33.dsk
|
||||
|
||||
STILL_ALIVE.BAS: still_alive.bas
|
||||
$(TXT2BAS) < still_alive.bas > STILL_ALIVE.BAS
|
||||
|
||||
glados33.dsk: STILL_ALIVE.BAS
|
||||
$(DOS33) -y glados33.dsk SAVE A STILL_ALIVE.BAS
|
||||
|
||||
clean:
|
||||
rm -f *~ *.BAS *.lst
|
||||
|
5
glados3.3/NOTES
Normal file
5
glados3.3/NOTES
Normal file
@ -0,0 +1,5 @@
|
||||
https://www.youtube.com/watch?v=WehWE5nqb9A
|
||||
http://pastebin.com/9pQcGnip
|
||||
|
||||
https://www.youtube.com/watch?v=bxwgd0PVyQQ
|
||||
http://www.steamgames.com/v/img/whatsnew/StillAlive.pdf
|
BIN
glados3.3/glados33.dsk
Normal file
BIN
glados3.3/glados33.dsk
Normal file
Binary file not shown.
1911
glados3.3/still_alive.bas
Normal file
1911
glados3.3/still_alive.bas
Normal file
File diff suppressed because it is too large
Load Diff
Loading…
x
Reference in New Issue
Block a user