How can I make a table of size 10 have the same value 0ffh repeated multiple times?
0ffh
tab2 db 0ffh*10 doesn't work.
tab2 db 0ffh*10
Note: using emu8086
The answer is tab2 db 10 dup (0ffh) It worked thx for @Michael 4
tab2 db 10 dup (0ffh)