1
0
Fork 0
mirror of https://github.com/yuzu-emu/unicorn.git synced 2025-03-29 07:08:35 +00:00

Introduce DEVICE_CATEGORY_CPU for CPU devices

Now that CPUs show up in the help text of "-device ?",
we should group them into an appropriate category.

Backports commit ba31cc7226ebcee639f18faa90c1542bd364fba3 from qemu
This commit is contained in:
Thomas Huth 2018-03-09 13:00:22 -05:00 committed by Lioncash
parent 714781d9e0
commit af3cd62c4b
No known key found for this signature in database
GPG key ID: 4E3C3CC1031BA9C7

View file

@ -25,6 +25,7 @@ typedef enum DeviceCategory {
DEVICE_CATEGORY_DISPLAY,
DEVICE_CATEGORY_SOUND,
DEVICE_CATEGORY_MISC,
DEVICE_CATEGORY_CPU,
DEVICE_CATEGORY_MAX
} DeviceCategory;