rv32cpu: allocated with calloc (for debug)

This commit is contained in:
vhaudiquet 2023-10-08 14:09:20 +02:00
parent cb98752b67
commit 6b9e5c766b

View File

@ -39,7 +39,7 @@ static void cpu_print_instruction(instruction_t* instruction);
void cpu_init()
{
cpu0 = malloc(sizeof(rv32_cpu_t));
cpu0 = calloc(1, sizeof(rv32_cpu_t));
cpu0->regs.zero = 0;
}