-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
18 changed files
with
383 additions
and
346 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
#!/bin/bash | ||
|
||
cheby -i dot_prod_wb.cheby --hdl vhdl --gen-wbgen-hdl dot_prod_wb.vhd --doc html --gen-doc doc/dot_prod_wb.html --gen-c dot_prod_wb.h --consts-style verilog --gen-consts ../../../sim/regs/dot_prod_wb.vh | ||
cheby -i wb_fofb_processing_regs.cheby --hdl vhdl --gen-wbgen-hdl wb_fofb_processing_regs.vhd --gen-c wb_fofb_processing_regs.h --consts-style verilog --gen-consts ../../../sim/regs/wb_fofb_processing_regs.vh |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
26 changes: 26 additions & 0 deletions
26
hdl/modules/fofb_processing/cheby/wb_fofb_processing_regs.h
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
#ifndef __CHEBY__WB_FOFB_PROCESSING_REGS__H__ | ||
#define __CHEBY__WB_FOFB_PROCESSING_REGS__H__ | ||
#define WB_FOFB_PROCESSING_REGS_SIZE 12 /* 0xc */ | ||
|
||
/* None */ | ||
#define WB_FOFB_PROCESSING_REGS_RAM_COEFF_DAT 0x0UL | ||
|
||
/* None */ | ||
#define WB_FOFB_PROCESSING_REGS_RAM_COEFF_ADDR 0x4UL | ||
|
||
/* None */ | ||
#define WB_FOFB_PROCESSING_REGS_RAM_WRITE 0x8UL | ||
#define WB_FOFB_PROCESSING_REGS_RAM_WRITE_ENABLE 0x1UL | ||
|
||
struct wb_fofb_processing_regs { | ||
/* [0x0]: REG (rw) (no description) */ | ||
uint32_t ram_coeff_dat; | ||
|
||
/* [0x4]: REG (rw) (no description) */ | ||
uint32_t ram_coeff_addr; | ||
|
||
/* [0x8]: REG (rw) (no description) */ | ||
uint32_t ram_write; | ||
}; | ||
|
||
#endif /* __CHEBY__WB_FOFB_PROCESSING_REGS__H__ */ |
Oops, something went wrong.