1 TCO 4 Write the assembly code to specify a data segment th
1. (TCO 4) Write the assembly code to specify a data segment that contains the following:
a byte named num1 that has a value of 10.
a byte named num2 that has a value of 15.
a byte reserved for a variable named big. (Points : 15)
Solution
num1 db 10
num2 db 15
big bd ?
