bash + iconv + DosBox / x86 머신 코드 (104 97 96 95 자)
echo ↾각슈삨₲ɻ庲錿ʴ⇍罋곹삄ૃ蘊尧⺓⺂粘ㄾ㸸ਾ岈⺎➉⸠粓蜊㹏褾鄮漧粐蠊蝜⾈葜⾇⼠⺂ꤧ樠獧惇|iconv -futf8 -tucs2>o.com;dosbox o*
이것을 빈 디렉토리의 스크립트에 넣는 것이 좋습니다. 터미널에 복사하여 붙여 넣으면 모든 것이 깨질 것입니다. 더 나은 방법으로, 여기에서 기성품 스크립트를 얻을 수 있습니다 .
예상 출력 :
작동 원리
bash 부분은 스크립트의 UTF-8 문자에서 파일 iconv
을 "압축 해제"하고 DosBox로 .com
파일을 시작하는 데 사용되는 실행기 일뿐 입니다.
모든 입력 시퀀스가 iconv
불평하지 않고 UCS-2로 해석 될 수있는 것은 아니기 때문에 이것은 내용에 약간의 제한이 있습니다 . 예를 들어, 어떤 이유로 bx
레지스터를 사용 하는 많은 작업이 내가 사용한 위치에 따라 혼란을 겪었 으므로이 문제를 여러 번 해결해야했습니다.
이제 유니 코드는 "문자 수"규칙을 활용하는 것입니다. 스크립트의 실제 크기 (바이트)는 원본보다 훨씬 큽니다..COM
파일 .
추출 된 .com
파일은
00000000 be 21 01 ac 88 c2 a8 c0 7d 0a b2 20 7b 02 b2 5e |.!......}.. {..^|
00000010 83 e0 3f 93 b4 02 cd 21 4b 7f f9 ac 84 c0 75 e4 |..?....!K.....u.|
00000020 c3 0a 0a 86 27 5c 93 2e 82 2e 98 7c 3e 31 38 3e |....'\.....|>18>|
00000030 3e 0a 88 5c 8e 2e 89 27 20 2e 93 7c 0a 87 4f 3e |>..\...' ..|..O>|
00000040 3e 89 2e 91 27 6f 90 7c 0a 88 5c 87 2e a6 7c 0a |>...'o.|..\...|.|
00000050 88 2f 5c 84 2e a8 7c 0a 87 2f 20 2f 82 2e 27 a9 |./\...|../ /..'.|
00000060 7c 0a 20 6a 67 73 c7 60 f3 0a 0a 00 ||. jgs.`....|
0000006c
길이는 108 바이트입니다. NASM 소스는 다음과 같습니다.
org 100h
start:
; si: pointer to current position in data
mov si,data
; load the character in al
lodsb
mainloop:
; bx: repetition count
; - zero at startup
; - -1 after each RLE run
; - one less than each iteration after each "literal" run
; the constant decrement is not really a problem, as print
; always does at least one print, and there aren't enough
; consecutive literal values to have wraparound
; if the high bit is not set, we have a "literal" byte;
; we prepare it in dl just in case
mov dl,al
; then check if it's not set and branch straight to print
; notice that bx=0 is fine, as print prints always at least one character
; test the top two bits (we need the 6th bit below)
test al,0xc0
; to see if the top bit was set, we interpret it as the sign bit,
; and branch if the number is positive or zero (top bit not set)
jge print
rle:
; it wasn't a literal, but a caret/space with a repetition count
; space if 6th bit not set, caret otherwise
mov dl,' '
; exploit the parity bit to see if the 6th bit was set
jnp nocaret
mov dl,'^'
nocaret:
; lower 6 bits: repetition count
; and away the top bits and move in bx
; we and ax and not al because we have to get rid of the 02h in ah
and ax,3fh
xchg ax,bx
print:
; print bx times
mov ah,2
int 21h
dec bx
jg print
; read next character
lodsb
test al,al
; rinse & repeat unless we got a zero
jnz mainloop
end:
ret
data:
; here be data
incbin "compressed.dat"
; NUL terminator
db 0
이 모든 compressed.dat
형식 의 압축 해제 기는 다음과 같습니다.
- 높은 비트가 설정되지 않은 경우 문자를 그대로 인쇄하십시오.
- 그렇지 않으면, 낮은 6 비트는 반복 카운트이고, 두 번째로 높은 비트는 공백 (비트 미 설정) 또는 캐럿 (비트 세트)을 인쇄해야하는지 여부를 지정합니다.
compressed.dat
원래 텍스트에서 Python 스크립트 를 사용하여 생성 됩니다.
모든 것은 여기 에서 찾을 수 있습니다 .