mirror of
https://github.com/TwilitRealm/dusklight
synced 2026-07-12 05:28:43 -04:00
project cleanup (#2895)
* some wii OS fixes * remove old dol2asm comments * remove dol2asm.h * remove function address comments * normalize ATTRIBUTE_ALIGN usage * DECL_WEAK macro * fix gcc attribute weak macro * wrap more mwcc specific things in ifdefs * fixes * fix revo sdk version flags * fixes
This commit is contained in:
@@ -1,14 +1,8 @@
|
||||
//
|
||||
// Generated By: dol2asm
|
||||
// Translation Unit: JASProbe
|
||||
//
|
||||
|
||||
#include "JSystem/JSystem.h" // IWYU pragma: keep
|
||||
|
||||
#include "JSystem/JAudio2/JASProbe.h"
|
||||
#include "dolphin/os.h"
|
||||
|
||||
/* 80290D74-80290DC4 28B6B4 0050+00 1/1 0/0 0/0 .text start__8JASProbeFPCc */
|
||||
void JASProbe::start(char const* name) {
|
||||
volatile BOOL interrupts = OSDisableInterrupts();
|
||||
mName = name;
|
||||
@@ -16,9 +10,7 @@ void JASProbe::start(char const* name) {
|
||||
OSRestoreInterrupts(interrupts);
|
||||
}
|
||||
|
||||
/* ############################################################################################## */
|
||||
|
||||
/* 80290DC4-80290EE4 28B704 0120+00 1/1 0/0 0/0 .text stop__8JASProbeFv */
|
||||
void JASProbe::stop() {
|
||||
volatile int interrupts = OSDisableInterrupts();
|
||||
_08 = (u32)OSGetTime() - mStartTime;
|
||||
@@ -35,11 +27,8 @@ void JASProbe::stop() {
|
||||
OSRestoreInterrupts(interrupts);
|
||||
}
|
||||
|
||||
/* ############################################################################################## */
|
||||
/* 80431620-80431660 05E340 0040+00 2/2 0/0 0/0 .bss sProbeTable__8JASProbe */
|
||||
JASProbe* JASProbe::sProbeTable[16];
|
||||
|
||||
/* 80290EE4-80290F24 28B824 0040+00 0/0 7/7 0/0 .text start__8JASProbeFlPCc */
|
||||
void JASProbe::start(s32 index, char const* name) {
|
||||
if (index < 16) {
|
||||
if (sProbeTable[index] != NULL) {
|
||||
@@ -48,7 +37,6 @@ void JASProbe::start(s32 index, char const* name) {
|
||||
}
|
||||
}
|
||||
|
||||
/* 80290F24-80290F64 28B864 0040+00 0/0 6/6 0/0 .text stop__8JASProbeFl */
|
||||
void JASProbe::stop(s32 index) {
|
||||
if (index < 16) {
|
||||
if (sProbeTable[index] != NULL) {
|
||||
|
||||
Reference in New Issue
Block a user