Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
TASM 2.51 を使用していますが、プロシージャに対してローカルなデータを宣言するための構文を教えてください。スタックに配置されるローカル変数は必要ありません。データはデータ セグメントに配置する必要がありますが、ラベルは 1 つのプロシージャにしか表示されません。これはどのように行うことができますか?
うーん、久々にTurbo Assemblerを使ったのですが、こんな感じではありませんでしたか?
MyProc proc local MyVar : byte ... MyProc endp