Example 3. Assembly Language Variable Program

* Note the use of underscores in the following lines .bss _var1,4,4 ; Define the variable .global var1 ; Declare it as external _var2 .usect "mysect",4,4 ; Define the variable .global _var2 ; Declare it as external