The way I've been trying to convert the value is by a division/remainder loop(divide by 2/16/8, record the remainder to the right spot in an array, loop back with the new value, repeat until you display the array at the end), but I was wondering if there is a simpler way to do it.
My professor told me "Don't worry about it if it works", but that's not quite what I was hoping for. Through googling I've seen plenty of examples that don't use the division, but the code wasn't commented so I wasn't able to learn from it.
Is there a simpler way to do this for someone fairly new to MASM or should I just listen to my professor and let it be?