8086 기계 코드, 82 80
x.com
파일 내용 :
B7 3D 89 DF B1 80 F3 AA 0D 0A 24 B4 01 CD 21 42
38 D8 74 F7 38 17 77 02 88 17 88 C3 31 D2 3C 0D
75 E9 BF 21 3D B1 5E 31 C0 F3 AE E3 EE 4F BB 04
01 8A 05 D4 0A 86 E0 0D 30 30 89 47 02 3C 30 77
04 88 67 03 43 89 3F 89 DA B4 09 CD 21 47 EB D7
최대 99 자의 반복 만 지원합니다.
debug.com
주석이 있는 소스 코드 ( 어셈블러의 입력으로 제공됨)!
a
mov bh, 3d ; storage of 128 bytes at address 3d00
mov di, bx
mov cl, 80
rep stosb ; zero the array
db 0d 0a 24
; 10b
mov ah, 1
int 21 ; input a char
inc dx ; calculate the run length
cmp al, bl ; is it a repeated character?
je 10b
cmp [bx], dl ; is the new run length greater than previous?
ja 11a
mov [bx], dl ; store the new run length
; 11a
mov bl, al ; remember current repeating character
xor dx, dx ; initialize run length to 0
cmp al, d ; end of input?
jne 10b ; no - repeat
mov di, 3d21 ; start printing run lengths with char 21
mov cl, 5e ; num of iterations = num of printable characters
; 127
xor ax, ax
repe scasb ; look for a nonzero run length
jcxz 11b ; no nonzero length - exit
dec di
mov bx, 104 ; address of output string
mov al, [di] ; read the run length
aam ; convert to decimal
xchg al, ah
or ax, 3030
mov [bx+2], ax
cmp al, 30 ; was it less than 10?
ja 145
mov [bx+3], ah ; output only one digit
inc bx ; adjust for shorter string
; 145
mov [bx], di ; store "x=" into output string
mov dx, bx ; print it
mov ah, 9
int 21
inc di
jmp 127 ; repeat
; 150
rcx 50
n my.com
w
q
여기에 내가 생각했던 재미난 골프 기술이 있습니다 :
- 배열의 주소는입니다
3d00
. 여기서 3d
ascii 코드는 =
입니다. 이런 식으로, 문자에 대한 배열 항목의 주소 x
는 3d78
입니다. 2 자 문자열로 해석하면 x=
입니다.
- 출력 버퍼가 주소에 있습니다
104
. 더 이상 필요없는 초기화 코드를 덮어 씁니다. 라인 끝 시퀀스 0D 0A 24
는 무해한 코드로 실행됩니다.
- 이
aam
지침은 골프를 제공하지는 않지만 ...
- 먼저 숫자가 10보다 크다고 가정하고 숫자가 더 작은 경우 수정하십시오.
- 종료 명령어는 불명확 한 주소
11b
에 있으며, 여기에는 C3
운 좋게 필요한 기계 코드 가 들어 있습니다 .