Skip to content

Commit

Permalink
minoor fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
Pierre Guillod committed Nov 29, 2023
1 parent 3b20b8e commit 1ff00cc
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions hw/fpga/xilinx_core_v_mini_mcu_wrapper.sv
Original file line number Diff line number Diff line change
Expand Up @@ -123,8 +123,8 @@ module xilinx_core_v_mini_mcu_wrapper
.ext_dma_read_ch0_resp_i('0),
.ext_dma_write_ch0_req_o(),
.ext_dma_write_ch0_resp_i('0),
.ext_dma_addr_ch0_req_o(),
.ext_dma_addr_ch0_resp_i('0),
.ext_dma_addr_bcst_ch0_req_o(),
.ext_dma_addr_bcst_ch0_resp_i('0),
.ext_peripheral_slave_req_o(),
.ext_peripheral_slave_resp_i('0),
.external_subsystem_powergate_switch_no(),
Expand Down
2 changes: 1 addition & 1 deletion sw/applications/example_dma/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ int main(int argc, char *argv[])
static uint32_t test_data_4B[TEST_DATA_SIZE] __attribute__ ((aligned (4))) = {
0x76543210, 0xfedcba98, 0x579a6f90, 0x657d5bee, 0x758ee41f, 0x01234567, 0xfedbca98, 0x89abcdef, 0x679852fe, 0xff8252bb, 0x763b4521, 0x6875adaa, 0x09ac65bb, 0x666ba334, 0x55446677, 0x65ffba98};
static uint32_t copied_data_4B[TEST_DATA_LARGE] __attribute__ ((aligned (4))) = { 0 };
static uint16_t broadcast_data_4B[TEST_DATA_LARGE] __attribute__ ((aligned (4))) = { 0 };
static uint16_t broadcast_data_4B[4*TEST_DATA_SIZE] __attribute__ ((aligned (4))) = { 0 };
static uint32_t test_data_large[TEST_DATA_LARGE] __attribute__ ((aligned (4))) = { 0 };

static uint16_t test_data_halfword_4B[TEST_DATA_SIZE] __attribute__ ((aligned (4))) = {
Expand Down

0 comments on commit 1ff00cc

Please sign in to comment.