Write a program in NASM that turns a 32-bit numeric value (e.g.,0xFFFFh) and converts it to a byte array such that it can beprinted to the screen using a system call method. A loop isnecessary for converting the numeric value to ASCII for output.Again, use a system call (e.g., int 80h) to print the value to theconsole. Calling external functions (e.g. printf) is not allowed.You may use the starter file attached to this assignment.