1/* 2 * This software is Copyright (c) 2016 Denis Burykin 3 * [denis_burykin yahoo com], [denis-burykin2014 yandex ru] 4 * and it is hereby released to the general public under the following terms: 5 * Redistribution and use in source and binary forms, with or without 6 * modification, are permitted. 7 * 8 */ 9 10// Extra stage suggested if BRAM is used. 11localparam EXTRA_REGISTER_STAGE = 1; 12 13localparam OP_STATE_READY = 0, 14 OP_STATE_START = 1, 15 OP_STATE_EXTRA_STAGE = 2, 16 OP_STATE_NEXT_CHAR = 3, 17 OP_STATE_NEXT_WORD = 4, 18 OP_STATE_DONE = 5; 19 20