Print decimal in 8086 emulator
问题 I implemented the multiplication of two big integer in emu8086 with code as below : ; MULTIPLY N1 * N2 = RES MULTIPLY PROC MOV BH, 0H MOV CH, 0H MOV CL, L1; initial counter of first loop ( L1 -> length of N1 ) DEC CX MUL_1: MOV COUNTER, CL ; store counter of first loop MOV CL, L2 ; initial counter of second loop ( L2 -> length of N2 ) MUL_2: MOV BH, 0H MOV BL, COUNTER DEC BL MOV AL, N1[BX] ; get BX th byte of N1 MOV BL, CL DEC BL MUL N2[BX] ; multiple N1 and N2 's bytes MOV BH, 0H MOV BL,