?? bas.bat
字號:
@echo off
rem ---------------------------------------------------------------------
rem Batch file to compile with SBasic and assemble with ASM11 in one step
rem Written by Tony Papadimitriou "<tonyp@acm.org>"
rem ---------------------------------------------------------------------
if "%1" == "" goto Usage
if not exist %1.bas goto NotFound
if "%2" == "8" goto 811E2
SBASIC %1.bas /cd000 /v0000 /s01ff > %1.sba
goto Continue
:811E2
SBASIC %1.bas /cf800 /v0000 /s00ff > %1.sba
:Continue
if errorlevel == 1 goto Error
sb2asm11 %1
del %1.sba
asm11 %1 -rel- -l-
rem del %1.asm
goto Exit
:NotFound
echo
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -