1# This test case includes a single case of a load hazard, whereby an 2# instruction references a register which is the target of a load. 3# The assembler must warn about this! 4 5.data 6foodata: 7 .word 42 8 9.text 10 ldw %8, foodata(%4) 11 add %8, %1, %9 12