Asm 測試 code block

二 01 十一月 2022 by ols3

測試組合語言 code block:

.386
.model flat, stdcall
option casemap : none

.data
abc db "abc",0
def db "def",0

.code
start:

mov ecx,3     ;the length of the abc and def strings
cld           ;set the direction flag so that EDI and ESI will increase using …
read more