//%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 Product : static 5 bit integer enddeclare Product := Item * Multiplicand out_string (TTY, "Product = ") out_integer (TTY, Product) out_record (TTY) endmodule