Preview:
title "daa"
.model small
.stack 100h
.data
   num1 db 59h  
   num2 db 35h  
   result db 0  
.code
   mov ax, @data
   mov ds, ax

   mov al, num1  
   add al, num2  
   daa           

   mov result, al  

   mov ah, 4ch   
   int 21h
end
downloadDownload PNG downloadDownload JPEG downloadDownload SVG

Tip: You can change the style, width & colours of the snippet with the inspect tool before clicking Download!

Click to optimize width for Twitter