VOGONS

Common searches


First post, by llm

User metadata
Rank Member
Rank
Member

i've already found 5.36 from 1984 on Vetusware but not any download for the 5.35 version from 1983 - its missing in my collection 😀

Reply 1 of 1, by llm

User metadata
Rank Member
Rank
Member

btw: got anyone further/deep knowledge about the BASCOM.lib format?

demo.bas

10 ' $TITLE : 'MS-BASIC' $SUBTITLE : 'Program'
20 DEFINT A-Z
30 DIM A(10,10),B(10,10),C(10,10)
40 PRINT "Start of program"
50 ' $OCODE +
60 FOR I=1 TO 10
70 FOR J=1 TO 10
80 A(I,J) = A(I-1,J-1)+B(I,J)*C(I,J)
90 NEXT
100 NEXT
110 ' $OCODE -
120 PRINT "End of Program"
130 END

getting compile with
bascom demo.bas /O
link demo.obj
to an BASRUN.EXE free demo.exe

demo.obj is a standard Microsoft OMF containning (from IDA 6.5x)
https://pastebin.com/raw/9UcGvbWe

and i think link.exe then adds BASCOM.LIB which is of strange format

bascom.lib.png
Filename
bascom.lib.png
File size
115.61 KiB
Views
386 views
File license
Public domain

my hope was to generate a Library info with IDA/Flirt of the BASCOM.LIB but IDA can't detect the type