;Disclaimer: The test case is only an example and is provided for your ;benefit. The test cases we provide are by not exhaustive and you must ;write your own test cases to ensure that your program works. Just because ;a program works for our test cases does NOT mean that it works in all ;cases. We will use several additional test cases when we will grade the ;program. ; NOTE: The outcome of your problem with this list should be the same as smalltest1.asm .ORIG x3300 ADDRFIRSTNODE .FILL NODE1 .BLKW xD00 ;any random number here to prove that first node can be anywhere NODE1 .FILL NODE2 .FILL NAME1 .FILL ROOM1 NAME1 .STRINGZ "patt" ROOM1 .STRINGZ "541A" .BLKW xE00 ;any random number here to prove that nodes need not be sequential in memory NODE2 .FILL NODE3 .FILL NAME2 .FILL ROOM2 NAME2 .STRINGZ "cardwell" ROOM2 .STRINGZ "313" .BLKW x1200 ;any random number here to prove that nodes need not be sequential in memory NODE3 .FILL x0000 .FILL NAME3 .FILL ROOM3 NAME3 .STRINGZ "chiou" ROOM3 .STRINGZ "540" .END