Hi Eden,
What syntax is that??? Try:
section .data
var1 db 5
var2 dd var1
An address won't fit into a byte. (dw is enough for var2 if this is 16-bit code)
If you're getting errors about "scalar value", it's because a label/variable is a relocatable value. Try "var1 - $$", or some difference between two labels, if you're getting that error.
What are you trying to do, anyway?
Best,
Frank