DOS의 x86 기계 코드 ( .com
파일)-70 바이트
COM "loader"는 파일의 내용을 주소에 100h
넣고 점프 하기 때문에 .COM 파일을 다루는 것은 쉬운 일이 아닙니다 . 프로그램은 이미 어떻게 든 끝을 하드 코딩하고 그 이후의 모든 것을 무시해야하기 때문에 추가 할 수 있습니다. 첫 번째 N-1 바이트의 역 (주의 사항 : 프로그램이 어떻게 든 파일 길이로 트릭을 시도하면 모든 것이 중단됩니다).
내 .COM
-palyndromizing 의 16 진수 덤프는 다음과 같습니다 .COM
.
00000000 31 db 8a 1e 80 00 c6 87 81 00 00 ba 82 00 b8 00 |1...............|
00000010 3d cd 21 72 30 89 c6 bf ff ff b9 01 00 ba fe 00 |=.!r0...........|
00000020 89 f3 b4 3f cd 21 3c 01 75 18 b4 40 bb 01 00 cd |...?.!<.u..@....|
00000030 21 85 ff 75 e5 89 f3 f7 d9 88 ee b8 01 42 cd 21 |!..u.........B.!|
00000040 eb d8 47 74 f0 c3 |..Gt..|
명령 행에서 입력 파일을 가져 와서 stdout에 출력을 씁니다. 예상 사용법은 다음과 같습니다 compalyn source.com > out.com
.
주석이 달린 어셈블리 :
org 100h
section .text
start:
; NUL-terminate the command line
xor bx,bx
mov bl, byte[80h]
mov byte[81h+bx],0
; open the input file
mov dx,82h
mov ax,3d00h
int 21h
; in case of error (missing file, etc.) quit
jc end
; si: source file handle
mov si,ax
; di: iteration flag
; -1 => straight pass, 0 reverse pass
mov di,-1
loop:
; we read one byte at time at a bizarre memory
; location (so that dl is already at -2 later - we shave one byte)
mov cx,1
mov dx,0feh
mov bx,si
mov ah,3fh
int 21h
; if we didn't read 1 byte it means we either got to EOF
; or sought before the start of file
cmp al,1
jne out
; write the byte on stdout
mov ah,40h
mov bx,1
int 21h
; if we are at the first pass we go on normally
test di,di
jnz loop
back:
; otherwise, we have to seek back
mov bx,si
; one byte shorter than mov cx,-1
neg cx
; dl is already at -2, fix dh so cx:dx = -2
mov dh,ch
mov ax,4201h
int 21h
jmp loop
out:
; next iteration
inc di
; if it's not zero we already did the reverse pass
jz back
end:
ret
자체 테스트를 거쳤으며 이전 질문에 대한 솔루션 은 DosBox에서 제대로 작동하는 것 같습니다. "정식"DOS 실행 파일에 대한 좀 더 광범위한 테스트가 이어질 것입니다.