Skip to content

Commit

Permalink
Fix packing directives, bulid with ninja
Browse files Browse the repository at this point in the history
  • Loading branch information
vintagepc committed Nov 6, 2022
1 parent 7b68102 commit 1fc2742
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ jobs:
run: cd ${{ runner.workspace }}/MINI404 && ./configure --target-list="buddy-softmmu" --enable-libusb --enable-gtk

- name: Build qemu-system-buddy
run: cd ${{ runner.workspace }}/MINI404 && make -j3
run: cd ${{ runner.workspace }}/MINI404/build && ninja

- name: Checkout Wiki
uses: actions/checkout@v3
Expand Down
4 changes: 2 additions & 2 deletions hw/arm/prusa/stm32f407/stm32f4xx_usb.c
Original file line number Diff line number Diff line change
Expand Up @@ -714,7 +714,7 @@ typedef union {
uint32_t DPID :2;
uint32_t PKTSTS :4;
uint32_t :11;
} HOST QEMU_PACKED;
} QEMU_PACKED HOST;
struct {
uint32_t EPNUM :4;
uint32_t BCNT :11;
Expand All @@ -723,7 +723,7 @@ typedef union {
uint32_t FRMNUM :4;
uint32_t :6;
REG_B32(INCOMPLETE); // NB- this isn't used by the device, rather by us to handle multi-packet IN transfers.
} DEV QEMU_PACKED;
} QEMU_PACKED DEV;
} buffer_header_t;

enum {
Expand Down

0 comments on commit 1fc2742

Please sign in to comment.