Skip to content

Commit

Permalink
Fixed compile issue
Browse files Browse the repository at this point in the history
  • Loading branch information
andreas-jonsson committed Sep 11, 2024
1 parent 5b6fe4f commit 06ba776
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion front/libretro/core.c
Original file line number Diff line number Diff line change
Expand Up @@ -352,7 +352,7 @@ void retro_init(void) {
load_bios(glabios_bin, (int)glabios_bin_len, 0xFE000),
load_bios(vxtx_bin, (int)vxtx_bin_len, 0xE0000),
vxtu_uart_create(&realloc, 0x3F8, 4),
vxtu_pic_create(&realloc),
vxtu_pic_create(&realloc, NULL),
vxtu_dma_create(&realloc),
vxtu_pit_create(&realloc),
ppi,
Expand Down
2 changes: 1 addition & 1 deletion front/web/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -245,7 +245,7 @@ void wasm_initialize_emulator(int freq, int afreq, int bsize) {
APPEND_DEVICE(load_bios(glabios_bin, (int)glabios_bin_len, 0xFE000));
APPEND_DEVICE(load_bios(vxtx_bin, (int)vxtx_bin_len, 0xE0000));
APPEND_DEVICE(vxtu_uart_create(&ALLOCATOR, 0x3F8, 4));
APPEND_DEVICE(vxtu_pic_create(&ALLOCATOR));
APPEND_DEVICE(vxtu_pic_create(&ALLOCATOR, NULL));
APPEND_DEVICE(vxtu_dma_create(&ALLOCATOR));
APPEND_DEVICE(vxtu_pit_create(&ALLOCATOR));
APPEND_DEVICE(ppi);
Expand Down

0 comments on commit 06ba776

Please sign in to comment.