Skip to content

Commit 964fdb4

Browse files
committed
Added FW and CORE Versions on Samples
1 parent 65b593a commit 964fdb4

File tree

4 files changed

+22
-0
lines changed

4 files changed

+22
-0
lines changed

Makefile

+2
Original file line numberDiff line numberDiff line change
@@ -129,6 +129,8 @@ rsxsample:
129129
@$(MAKE) -C rsx_sample --no-print-directory
130130

131131
#---------------------------------------------------------------------------------
132+
pkg: $(BUILD) $(OUTPUT).pkg
133+
132134
else
133135

134136
DEPENDS := $(OFILES:.o=.d)

include/ps3mapidyn.h

+14
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,11 @@ int ps3mapi_process_page_free(process_id_t pid, uint64_t flags, uint64_t *page_t
108108

109109
int ps3mapi_get_core_version(void)
110110
{
111+
#ifdef __PSL1GHT__
111112
lv2syscall2(8, SYSCALL8_OPCODE_PS3MAPI, PS3MAPI_OPCODE_GET_CORE_VERSION);
113+
#else
114+
system_call_2((uint64_t)8,(uint64_t)SYSCALL8_OPCODE_PS3MAPI, (uint64_t)PS3MAPI_OPCODE_GET_CORE_VERSION);
115+
#endif
112116
return_to_user_prog(int);
113117
}
114118

@@ -117,6 +121,16 @@ int has_ps3mapi(void)
117121
return (ps3mapi_get_core_version() >= PS3MAPI_CORE_MINVERSION);
118122
}
119123

124+
int ps3mapi_get_fw_version(void)
125+
{
126+
#ifdef __PSL1GHT__
127+
lv2syscall2(8, SYSCALL8_OPCODE_PS3MAPI, PS3MAPI_OPCODE_GET_FW_VERSION);
128+
#else
129+
system_call_2((uint64_t)8,(uint64_t)SYSCALL8_OPCODE_PS3MAPI, (uint64_t)PS3MAPI_OPCODE_GET_FW_VERSION);
130+
#endif
131+
return_to_user_prog(int);
132+
}
133+
120134

121135
int ps3mapi_set_process_mem(process_id_t pid, uint64_t addr, char *buf, int size )
122136
{

psgl_sample/source/main.cpp

+3
Original file line numberDiff line numberDiff line change
@@ -251,11 +251,14 @@ int main()
251251

252252
// Prepare screen_buffer_out for DebugFont
253253
sprintf(screen_buffer_out, "\n\nPS3 MAPI DYNAREC TEST (PSGL VERSION)\n\n"
254+
"\nPS3 MAPI CORE VERSION: %d\n"
255+
"\nPS3 MAPI FW VERSION: %d\n"
254256
"\nPROCESS PID: %d"
255257
"\nDYNAREC BYTECODE BUFFER AT: 0x%llx "
256258
"\nLENGTH DYNAREC BYTECODE BUFFER: %d bytes"
257259
"\nRESULT FIRST FUNCTION CALL: %d (%s)"
258260
"\nRESULT SECOND FUNCYION CALL: %d (%s)",
261+
ps3mapi_get_core_minversion(), ps3mapi_get_fw_version(),
259262
sysProcessGetPid(), (uint64_t)START_DYNAREC_BUFFER, LEN_DYNAREC_BUFFER,
260263
result1, result1 == 5 ? "SUCCESS" : "FAIL", result2, result2 == 9 ? "SUCCESS" : "FAIL");
261264
}

rsx_sample/source/main.cpp

+3
Original file line numberDiff line numberDiff line change
@@ -219,11 +219,14 @@ int main(int argc,const char *argv[])
219219

220220
// Prepare screen_buffer_out for DebugFont
221221
sprintf(screen_buffer_out, "\n\nPS3 MAPI DYNAREC TEST\n\n"
222+
"\nPS3 MAPI CORE VERSION: %d\n"
223+
"\nPS3 MAPI FW VERSION: %d\n"
222224
"\nPROCESS PID: %d\n"
223225
"\nDYNAREC BYTECODE BUFFER AT: 0x%lx "
224226
"\nLENGTH DYNAREC BYTECODE BUFFER: %d bytes"
225227
"\nRESULT FIRST FUNCTION CALL: %d (%s)"
226228
"\nRESULT SECOND FUNCTION CALL: %d (%s)",
229+
ps3mapi_get_core_minversion(), ps3mapi_get_fw_version(),
227230
sysProcessGetPid(), (uint64_t)START_DYNAREC_BUFFER, LEN_DYNAREC_BUFFER,
228231
result1, result1 == 5 ? "SUCCESS": "FAIL", result2, result2 == 9 ? "SUCCESS": "FAIL");
229232
}

0 commit comments

Comments
 (0)