Code machine x86 sous DOS - 14 13 11 octets
Eh bien, il est devenu plus court encore! Après avoir écrit une solution pour un défi sans rapport , j'ai remarqué que le même truc pouvait être appliqué même ici. Alors on y va:
00000000 b4 08 cd 21 35 01 0a 86 c2 eb f7 |...!5......|
0000000b
Assemblée commentée:
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
Solution précédente - 13 octets
Je pense que ça ne devient pas beaucoup plus court que ça.En fait, ça l'a fait! Merci à @ninjalj pour avoir supprimé un octet de plus.
00000000 b4 08 cd 21 34 01 92 b4 02 cd 21 eb f3 |...!4.....!..|
0000000d
Cette version propose une interactivité avancée ™ - après son exécution à partir de la ligne de commande, elle crache les caractères "inversés" tant que vous écrivez les chiffres saisis (qui ne sont pas répercutés). pour sortir, faites juste un Ctrl-C.
Contrairement à la solution précédente, cela ne fonctionne pas correctement dans DosBox. DosBox ne prenant pas correctement en charge la combinaison de touches Ctrl-C , vous êtes obligé de fermer la fenêtre DosBox si vous souhaitez quitter. Dans une machine virtuelle avec DOS 6.0, il s'exécute comme prévu.
Source NASM:
org 100h
section .text
start:
mov ah,8
int 21h
xor al,1
xchg dx,ax
mov ah,2
int 21h
jmp start
Ancienne solution - 27 25 22 octets
Cela acceptait sa saisie depuis la ligne de commande; fonctionne correctement en tant que fichier .COM dans 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 |...|..|
Entrée 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