Bat 文件编译器汇编语言源程序代码:; BAT2EXEC.COM - a batch file compiler
;
; BAT2EXEC filename
;
; Revision History:
;
; Version 1.0 Initial Release PC Magazine Vol 9 Num 14
;
;====================
code segment
assume cs:code
org 2ch
env_segment dw ? ;Word containing the segment
; of the program's env. block.
org 80h
command_tail db ? ;Offset of the command tail.
org 100h
main: jmp initialize
program db 13,10,"BAT2EXEC 1.0 "
copyright db "(c) 1990 Ziff Communications Co.",10,13
author db "PC Magazine ",254," Douglas Boling"
db 10,13,"$",1Ah