mirror of
https://github.com/dingusdev/dingusppc.git
synced 2024-12-25 03:29:38 +00:00
ppcexec: break long lines, improve indentation.
This commit is contained in:
parent
0ff911cc26
commit
6aa54b8dda
@ -55,7 +55,9 @@ uint32_t ppc_next_instruction_address; // Used for branching, setting up the
|
||||
#ifdef EXEC_FLAGS_ATOMIC
|
||||
std::atomic<unsigned> exec_flags{0}; // execution control flags
|
||||
#else
|
||||
unsigned exec_flags; // FIXME: read by main thread ppc_main_opcode; written by audio dbdma DMAChannel::update_irq .. add_immediate_timer
|
||||
// FIXME: read by main thread ppc_main_opcode;
|
||||
// written by audio dbdma DMAChannel::update_irq .. add_immediate_timer
|
||||
unsigned exec_flags;
|
||||
#endif
|
||||
bool int_pin = false; // interrupt request pin state: true - asserted
|
||||
bool dec_exception_pending = false;
|
||||
@ -73,8 +75,10 @@ int icnt_factor;
|
||||
uint64_t tbr_wr_timestamp; // stores vCPU virtual time of the last TBR write
|
||||
uint64_t rtc_timestamp; // stores vCPU virtual time of the last RTC write
|
||||
uint64_t tbr_wr_value; // last value written to the TBR
|
||||
uint32_t tbr_freq_ghz; // TBR/RTC driving frequency in GHz expressed as a 32 bit fraction less than 1.0 (999.999999 MHz maximum).
|
||||
uint64_t tbr_period_ns; // TBR/RTC period in ns expressed as a 64 bit value with 32 fractional bits (<1 Hz minimum).
|
||||
uint32_t tbr_freq_ghz; // TBR/RTC driving frequency in GHz expressed as a
|
||||
// 32 bit fraction less than 1.0 (999.999999 MHz maximum).
|
||||
uint64_t tbr_period_ns; // TBR/RTC period in ns expressed as a 64 bit value
|
||||
// with 32 fractional bits (<1 Hz minimum).
|
||||
uint64_t timebase_counter; // internal timebase counter
|
||||
uint64_t dec_wr_timestamp; // stores vCPU virtual time of the last DEC write
|
||||
uint32_t dec_wr_value; // last value written to the DEC register
|
||||
|
Loading…
Reference in New Issue
Block a user