codice macchina x86 su DOS - 14 13 11 byte
Bene, è diventato di nuovo più corto! Dopo aver scritto una soluzione per una sfida non correlata , ho notato che lo stesso trucco poteva essere applicato anche qui. Quindi eccoci qui:
00000000 b4 08 cd 21 35 01 0a 86 c2 eb f7 |...!5......|
0000000b
Assemblaggio commentato:
org 100h
section .text
start:
mov ah,8 ; start with "read character with no echo"
lop:
; this loop runs twice per character read; first with ah=8,
; so "read character with no echo", then with ah=2, so
; "write character"; the switch is performed by the xor below
int 21h ; perform syscall
; ah is the syscall number; xor with 0x0a changes 8 to 2 and
; viceversa (so, switch read <=> write)
; al is the read character (when we did read); xor the low
; bit to change 0 to 1 and reverse
xor ax,0x0a01
mov dl,al ; put the read (and inverted character) in dl,
; where syscall 2 looks for the character to print
jmp lop ; loop
Soluzione precedente - 13 byte
Penso che non sia molto più breve di questo.In realtà, lo ha fatto! Grazie a @ninjalj per aver rasato un altro byte.
00000000 b4 08 cd 21 34 01 92 b4 02 cd 21 eb f3 |...!4.....!..|
0000000d
Questa versione presenta l'interattività avanzata ™ - dopo averlo eseguito dalla riga di comando, sputa i caratteri "invertiti" fintanto che si scrivono le cifre di input (che non fanno eco); per uscire, basta fare un Ctrl-C.
A differenza della soluzione precedente, questo ha alcuni problemi nell'esecuzione in DosBox - poiché DosBox non supporta correttamente Ctrl-C , sei costretto a chiudere la finestra DosBox se vuoi uscire. In una VM con DOS 6.0, invece, funziona come previsto.
Fonte NASM:
org 100h
section .text
start:
mov ah,8
int 21h
xor al,1
xchg dx,ax
mov ah,2
int 21h
jmp start
Vecchia soluzione - 27 25 22 byte
Questo ha accettato il suo input dalla riga di comando; funziona senza problemi come file .COM in DosBox.
00000000 bb 01 00 b4 02 8a 97 81 00 80 f2 01 cd 21 43 3a |.............!C:|
00000010 1e 80 00 7c f0 c3 |...|..|
Input NASM:
org 100h
section .text
start:
mov bx, 1
mov ah, 2
loop:
mov dl, byte[bx+81h]
xor dl, 1
int 21h
inc bx
cmp bl, byte[80h]
jl loop
exit:
ret