Assalamualaikum Wr. Wb Nama : Riyan Wibowo NIM : 3420210016 Prodi : Teknik Informatika Berikut Ini UTS Assembler Language Yang Saya Kerjakan : Script Program ; You may customize this and other start-up templates ; The location of this template is c:\emu8086\inc\0_com_template.txt org 100h ; add your code here jmp start ; Deklarasi variable byte enter db 13,10,"$" kalimat db "Masukan tiga buah huruf: $" start: ; Isi register dx dengan nilai offset s1515 lea dx,kalimat ; Aktifkan fungsi output string mov ah, 09h ; int interupsi DOS int 021h ; aktifkan fungsi input karakter mov ah,01h ; interupsi DOS int 021h ; pindahkan isi register AL ke BL mov bl,al ; aktifkan fungsi input karakter mov ah,01h ; interupsi DOS int 021h ; pindahkan isi register AL ke BH mov bh,al ; aktifkan fungsi input karakter mov ah,01h ; aktifkan interupsi DOS int 021h ; pindahkan isi register AL ke CL mov cl,al ; isi register DX dengan nil...