blob: f583d688fdfed8df1a38f664fe2971da2fc9ccf9 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
|
<think>
Okay, I need to classify this bug report about FPE in npcm7xx_adc_convert within QEMU as either user-mode or system-mode related. First, understanding what each mode entails: user-mode deals with applications running without needing high privileges, while system-mode involves higher privilege levels, handling peripherals, devices, and OS-level operations.
Looking at the issue, it's about ADC conversion in a specific hardware component (npcm7xx). ADC stands for Analog-to-Digital Converter, which is a hardware peripheral. Since this relates to device drivers or hardware interaction, it likely falls under system-mode because it involves lower-level operations that require higher privileges and interact with actual hardware devices.
Additionally, QEMU often deals with emulating hardware components, so issues here are typically related to how the emulator interacts with these peripherals, which again points towards system-mode rather than user applications. Therefore, this bug is probably in a part of QEMU that handles device emulation or low-level system operations.
</think>
system
|