//%set debug_print_ccode = true main module MULTBUG use TEXTIO declare Item : static 3 bit integer initially 2 Multiplicand : static 4 bit integer initially 3 Products : static 5 bit integer enddeclare Products := Item * Multiplicand out_string (TTY, "Products =") out_integer (TTY, Products ) out_record (TTY) endmodule