Merge branch 'main' into fixed-docs-makefile

This commit is contained in:
stnolting 2024-11-26 20:09:29 +01:00 committed by GitHub
commit 9c2ed5990b
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 3 additions and 3 deletions

View file

@ -63,7 +63,7 @@ entity neorv32_cpu_alu is
);
end neorv32_cpu_alu;
architecture neorv32_cpu_cpu_rtl of neorv32_cpu_alu is
architecture neorv32_cpu_alu_rtl of neorv32_cpu_alu is
-- comparator --
signal cmp_rs1 : std_ulogic_vector(XLEN downto 0);
@ -421,4 +421,4 @@ begin
end generate;
end neorv32_cpu_cpu_rtl;
end neorv32_cpu_alu_rtl;

View file

@ -397,7 +397,7 @@ void hexdump(uint32_t address) {
/**********************************************************************//**
* Print HEX byte.
*
* @param[in] byte Byte to be printed as 2-cahr hex value.
* @param[in] byte Byte to be printed as 2-char hex value.
**************************************************************************/
void aux_print_hex_byte(uint8_t byte) {