Hi,
I need to convert some PB DOS programs from EXE to COM. After a search, I fished up the following from Mel Bishop:
Try BASM 286. I think it's available on PB downloads somewhere.
It takes a basic style syntax and converts it to an actual .ASM
file that you then run through MASM, LINK and, if necessary,
EXE2COM.
It was in response to a question about building a BASIC interpreter.
I understand what the final product of the EXE2COM program "is" -- and I kind of know why I need a com file.
I was just wondering what the "if necessary" part is, and why someone else might need to make a com out of an exe.
Also, when I try the EXE2COM programs I have found, they all gripe about my simple little "Hello, World!" program having a stack.
Is there a good way to keep my prog from having a stack?
Mel?? are ya still out there?
Ken
------------------
Ken S. Elvehjem
[email protected]
I need to convert some PB DOS programs from EXE to COM. After a search, I fished up the following from Mel Bishop:
Try BASM 286. I think it's available on PB downloads somewhere.
It takes a basic style syntax and converts it to an actual .ASM
file that you then run through MASM, LINK and, if necessary,
EXE2COM.
It was in response to a question about building a BASIC interpreter.
I understand what the final product of the EXE2COM program "is" -- and I kind of know why I need a com file.
I was just wondering what the "if necessary" part is, and why someone else might need to make a com out of an exe.
Also, when I try the EXE2COM programs I have found, they all gripe about my simple little "Hello, World!" program having a stack.
Is there a good way to keep my prog from having a stack?
Mel?? are ya still out there?
Ken
------------------
Ken S. Elvehjem
[email protected]
Comment