Ok, so no XDK... why should that stop us? Let's scratch that itch.

QUOTE(dus @ Sep 22 2005, 10:17 AM)
To implement, just copy the LDP setup from the fonts (ernie.asm) and do the following:
(Assuming ebx is loaded with the pointer to LDP in memory and the path to xboxdash.xbe is copied into [ebx+8h])
write 1 into dword [ebx+0h]
write 3 into dword [ebx+400h]
write 1 into dword [ebx+408h]
NICE
will give it a shot
OK nice find Dus this is what i got and it's works
CODE
cld
mov edi, ebx
xor eax, eax
mov ecx, dword 0x00000400+0x010; extra bytes to zero of LDP !!!!
rep stosd
lea edi, [ebx+8]
lea esi, [clk_ph]
push byte CLKSZ
pop ecx
rep movsb ; move dash path into DP
mov [ebx+000h], dword 0x01 ; use parmeters
mov [ebx+400h], dword 0x03 ; parameter for settings in dashboard
mov [ebx+408h], dword 0x01 ; CLOCK within settings
push byte 0x02 ; quick reboot
call dword [HalReturnToFirmware]
jmp short $
;-----------------------------------------
align 4
clk_ph: db '\Device\Harddisk0\Partition2\xboxdash.xbe',0,0
CLKSZ: equ $-clk_ph
right now the last thing NKPatcher does is:
test the time and if it's before 9/20/05 it goes stright to the clock settings(in shadowC if enabled) then you IGR to dashboard_path
awesome work.
QUOTE
That is 400h double words (4 bytes). In total, 1000h bytes are cleared
was not sure but that clears it up thanks
(just wanted the space between 401h and 407h cleared)
will put something together later for anyone interested...
QUOTE(xman954 @ Sep 22 2005, 02:49 PM)
was not sure but that clears it up thanks
OK here it is:
http://triggernum5.s...tuff/clock_set/
just replace the xboxaps.asm with this one
the %define CLOCK_CHECK is in the first line of this file
you can comment it out to have no clock check
when shadowC is used it will go to C:\xboxdash.xbe to set the clock
if no shadowC is used it will go to C:\msxboxdash.xbe
try it and post back what you think
and if this look like it will be used
maybe DaddyJ will add it to NKP-Config
I take it that if no shadow c is found and no msxboxdash.xbe is found it will just boot to the main dash?
great stuff
QUOTE(krayzie @ Sep 23 2005, 12:24 AM)
I take it that if no shadow c is found and no msxboxdash.xbe is found it will just boot to the main dash?
QUOTE(xman954)
maybe DaddyJ will add it to NKP-Config

of course!
! Brilliant stuff !
( This might interest you too: http://forums.xbox-s...howtopic=444280 )