Тема закрыта 
 
Рейтинг темы:
  • Голосов: 2 - Средняя оценка: 5
  • 1
  • 2
  • 3
  • 4
  • 5
ISO Loader 0.6.x Beta
Автор Сообщение
SWAT Не на форуме
Администратор
*******

Сообщений: 7131
Зарегистрирован: 04.01.2005
Рейтинг: 30
Сказал спасибо: 134
Поблагодарили 1171 раз(а) в 729 сообщ.
Сообщение: #382
RE: ISO Loader 0.6.x Beta
(25.11.2020 12:48)sundance2 писал(а):  
(25.11.2020 07:18)SWAT писал(а):  But note that full loaders (sd_cso.bin and sd_cso_alt.bin) are already using too much memory to be placed in the default address (0x8c004000). Only sd_cso_se.bin can be placed there.
For full loaders with cso you should use 0x8c000100 or high memory.

Is there a place where the reasoning behind memory address selection is explained ?
For example, is it generally better for the loader to start at a lower address, while it's generally better for the software being run that the loader be placed at a rather higher address ?

This part is nebulous to me, the ISO loader proposes a lot of addresses, but without explanation, I tend to blindly follows config lists like the dragoncity one,
yet I see other people/video suggesting different address, and after testing, many of them work, so it's really not satisfying to understand why select one rather than the other.

@swat post states that one parameter for this choice is the binary size of the loader, suggesting that the "right" address depends on the loader and its version. Maybe on other parameters? or even the image being loaded too.

As a data point, `sd_cso.bin` is 30.5 KB,
compared to previous betas of `sd.bin` :
v0.6.11 => 28.6 KB
v0.6.10 => 27.6 KB
v0.6.9 => 27.3 KB
v0.6.8 => 26.9 KB
So it seems to be slowly growing overtime (even without cso support).
And presumably, it could have an impact on address selection.

Loader memory usage:
params (1KB) + loader code (nKB) + buffer (32KB - params - loader). Max 32KB.

In best case, for buffer need 2KB (one sector). This buffer uses only for non-optimized images and little for CDDA (track name). So the loader should be less than 29KB.
In future this buffer I will made as *dynamic* too, but it's working not in all games yet.

Also loader uses additional memory (up to 32KB) for CDDA and/or CISO buffers.
For CDDA now supported dynamic, for CISO still not, it uses only hardcoded addresses.
And CDDA can use hardcoded addresses if dynamic disabled (not supported).
You can see here:
https://github.com/DC-SWAT/DreamShell/bl...?ts=4#L220

Application (KATANA game) memory usage:
Params: 0x8c000000 - 0x8c000100 (also here vectors for syscalls)
Syscalls: 0x8c000100 - 0x8c004000
Stack: 0x8c004000 - 0x8c00f400 (in some cases at 0x8d000000)
VBR: 0x8c00f400 - 0x8c010000 (in some cases in heap)
App binary: 0x8c010000 - ???
Heap: ??? - 0x8d000000

So we can place loader (and buffers) in the heap (carefully with stack if it's at the end) or at 0x8c000100 - 0x8c004000 because loader can emulate all syscalls.
Best choice it's a 0x8c004000, we don't touch original syscalls (just change some vectors) and don't conflict with game, because stack here is usually does not grow much and VBR code block is 3KB, so we should have ~ 32KB for free.
But some games can write in this memory area some "loaders" or stack grow so much and do damage loader code. So we should move loader at high memory (heap) and hopes we are lucky Smile

[Изображение: barbers.png]
(Последний раз сообщение было отредактировано 27.11.2020 в 14:46, отредактировал пользователь SWAT.)
27.11.2020 07:42
Вебсайт Найти все сообщения
 Сказали спасибо: fafadou , sundance2
Тема закрыта 


Сообщения в этой теме
ISO Loader 0.6.x Beta - SWAT - 14.08.2017, 10:56
RE: ISO Loader 0.6.x Beta - ARnine - 14.08.2017, 18:11
RE: ISO Loader 0.6.x Beta - SWAT - 15.08.2017, 08:59
RE: ISO Loader 0.6.x Beta - aldair - 15.08.2017, 13:04
RE: ISO Loader 0.6.x Beta - fafadou - 15.08.2017, 19:04
RE: ISO Loader 0.6.x Beta - fafadou - 15.08.2017, 20:30
RE: ISO Loader 0.6.x Beta - aldair - 15.08.2017, 21:23
RE: ISO Loader 0.6.x Beta - fafadou - 16.08.2017, 04:19
RE: ISO Loader 0.6.x Beta - SWAT - 16.08.2017, 11:19
RE: ISO Loader 0.6.x Beta - fafadou - 16.08.2017, 18:00
RE: ISO Loader 0.6.x Beta - Eyl - 17.08.2017, 00:19
RE: ISO Loader 0.6.x Beta - fafadou - 18.08.2017, 04:43
RE: ISO Loader 0.6.x Beta - pcwzrd13 - 17.08.2017, 02:13
RE: ISO Loader 0.6.x Beta - SWAT - 17.08.2017, 06:45
RE: ISO Loader 0.6.x Beta - gilvan999 - 06.11.2017, 02:01
RE: ISO Loader 0.6.x Beta - fanhais - 18.11.2017, 21:31
RE: ISO Loader 0.6.x Beta - Borius - 02.12.2017, 10:12
RE: ISO Loader 0.6.x Beta - DeMeester - 13.02.2018, 01:33
RE: ISO Loader 0.6.x Beta - DeMeester - 13.02.2018, 11:29
RE: ISO Loader 0.6.x Beta - DeMeester - 13.02.2018, 18:36
RE: ISO Loader 0.6.x Beta - SWAT - 13.02.2018, 19:08
RE: ISO Loader 0.6.x Beta - DeMeester - 13.02.2018, 23:57
RE: ISO Loader 0.6.x Beta - gng4 - 18.02.2018, 08:09
RE: ISO Loader 0.6.x Beta - DeMeester - 23.02.2018, 23:16
RE: ISO Loader 0.6.x Beta - DeMeester - 24.02.2018, 04:01
RE: ISO Loader 0.6.x Beta - DeMeester - 24.02.2018, 11:41
RE: ISO Loader 0.6.x Beta - DeMeester - 24.02.2018, 13:48
RE: ISO Loader 0.6.x Beta - DeMeester - 25.02.2018, 18:57
RE: ISO Loader 0.6.x Beta - DeMeester - 26.02.2018, 02:04
RE: ISO Loader 0.6.x Beta - DeMeester - 28.02.2018, 12:03
RE: ISO Loader 0.6.x Beta - DeMeester - 28.02.2018, 20:58
RE: ISO Loader 0.6.x Beta - fafadou - 02.03.2018, 20:51
RE: ISO Loader 0.6.x Beta - DeMeester - 04.03.2018, 15:04
RE: ISO Loader 0.6.x Beta - fafadou - 06.03.2018, 12:46
RE: ISO Loader 0.6.x Beta - RolleR - 25.04.2018, 21:09
RE: ISO Loader 0.6.x Beta - RolleR - 27.04.2018, 00:41
RE: ISO Loader 0.6.x Beta - RolleR - 27.04.2018, 13:04
RE: ISO Loader 0.6.x Beta - RolleR - 28.04.2018, 18:52
RE: ISO Loader 0.6.x Beta - RolleR - 04.05.2018, 07:25
RE: ISO Loader 0.6.x Beta - calavera - 16.10.2018, 21:55
RE: ISO Loader 0.6.x Beta - calavera - 17.10.2018, 08:54
RE: ISO Loader 0.6.x Beta - calavera - 17.10.2018, 13:52
RE: ISO Loader 0.6.x Beta - calavera - 27.10.2018, 15:04
RE: ISO Loader 0.6.x Beta - fafadou - 28.10.2018, 14:22
RE: ISO Loader 0.6.x Beta - calavera - 28.10.2018, 14:39
RE: ISO Loader 0.6.x Beta - SWAT - 28.10.2018, 16:24
RE: ISO Loader 0.6.x Beta - calavera - 29.10.2018, 08:25
RE: ISO Loader 0.6.x Beta - fafadou - 29.10.2018, 12:51
RE: ISO Loader 0.6.x Beta - calavera - 29.10.2018, 14:20
RE: ISO Loader 0.6.x Beta - calavera - 29.10.2018, 16:56
RE: ISO Loader 0.6.x Beta - fafadou - 29.10.2018, 17:51
RE: ISO Loader 0.6.x Beta - PVS - 27.11.2018, 23:24
RE: ISO Loader 0.6.x Beta - SWAT - 02.12.2018, 18:38
RE: ISO Loader 0.6.x Beta - SWAT - 22.12.2018, 10:45
RE: ISO Loader 0.6.x Beta - fafadou - 04.12.2018, 15:37
RE: ISO Loader 0.6.x Beta - SWAT - 05.12.2018, 20:17
RE: ISO Loader 0.6.x Beta - fafadou - 06.12.2018, 20:19
RE: ISO Loader 0.6.x Beta - pcwzrd13 - 07.12.2018, 01:18
RE: ISO Loader 0.6.x Beta - fafadou - 07.12.2018, 15:37
RE: ISO Loader 0.6.x Beta - fafadou - 10.12.2018, 20:34
RE: ISO Loader 0.6.x Beta - fafadou - 11.12.2018, 12:25
RE: ISO Loader 0.6.x Beta - SWAT - 11.12.2018, 14:49
RE: ISO Loader 0.6.x Beta - fafadou - 11.12.2018, 15:11
RE: ISO Loader 0.6.x Beta - fafadou - 11.12.2018, 17:00
RE: ISO Loader 0.6.x Beta - fafadou - 11.12.2018, 19:58
RE: ISO Loader 0.6.x Beta - pcwzrd13 - 12.12.2018, 01:07
RE: ISO Loader 0.6.x Beta - fafadou - 15.12.2018, 17:16
RE: ISO Loader 0.6.x Beta - pcwzrd13 - 16.12.2018, 22:01
RE: ISO Loader 0.6.x Beta - fafadou - 12.12.2018, 13:04
RE: ISO Loader 0.6.x Beta - fafadou - 14.12.2018, 12:35
RE: ISO Loader 0.6.x Beta - SWAT - 15.12.2018, 09:54
RE: ISO Loader 0.6.x Beta - fafadou - 15.12.2018, 14:30
RE: ISO Loader 0.6.x Beta - pcwzrd13 - 17.12.2018, 02:36
RE: ISO Loader 0.6.x Beta - SWAT - 19.12.2018, 07:35
RE: ISO Loader 0.6.x Beta - fafadou - 19.12.2018, 12:44
RE: ISO Loader 0.6.x Beta - SWAT - 19.12.2018, 15:51
RE: ISO Loader 0.6.x Beta - fafadou - 19.12.2018, 18:59
RE: ISO Loader 0.6.x Beta - gng4 - 20.12.2018, 06:33
RE: ISO Loader 0.6.x Beta - fafadou - 20.12.2018, 13:38
RE: ISO Loader 0.6.x Beta - fafadou - 22.12.2018, 14:20
RE: ISO Loader 0.6.x Beta - fafadou - 23.12.2018, 15:08
RE: ISO Loader 0.6.x Beta - SWAT - 23.12.2018, 18:36
RE: ISO Loader 0.6.x Beta - fafadou - 24.12.2018, 18:40
RE: ISO Loader 0.6.x Beta - gilvan999 - 25.12.2018, 17:31
RE: ISO Loader 0.6.x Beta - fafadou - 26.12.2018, 04:37
RE: ISO Loader 0.6.x Beta - gilvan999 - 26.12.2018, 08:50
RE: ISO Loader 0.6.x Beta - SWAT - 26.12.2018, 11:21
RE: ISO Loader 0.6.x Beta - SWAT - 26.12.2018, 11:51
RE: ISO Loader 0.6.x Beta - gilvan999 - 26.12.2018, 15:51
RE: ISO Loader 0.6.x Beta - SWAT - 30.12.2018, 06:53
RE: ISO Loader 0.6.x Beta - pcwzrd13 - 27.12.2018, 00:18
RE: ISO Loader 0.6.x Beta - gilvan999 - 27.12.2018, 16:18
RE: ISO Loader 0.6.x Beta - pcwzrd13 - 27.12.2018, 01:10
RE: ISO Loader 0.6.x Beta - gilvan999 - 27.12.2018, 06:36
RE: ISO Loader 0.6.x Beta - fafadou - 27.12.2018, 13:59
RE: ISO Loader 0.6.x Beta - gilvan999 - 27.12.2018, 15:34
RE: ISO Loader 0.6.x Beta - gilvan999 - 27.12.2018, 16:32
RE: ISO Loader 0.6.x Beta - SWAT - 29.12.2018, 18:36
RE: ISO Loader 0.6.x Beta - fafadou - 29.12.2018, 18:56
RE: ISO Loader 0.6.x Beta - PVS - 30.12.2018, 00:58
RE: ISO Loader 0.6.x Beta - fafadou - 30.12.2018, 02:36
RE: ISO Loader 0.6.x Beta - SWAT - 30.12.2018, 15:29
RE: ISO Loader 0.6.x Beta - fafadou - 30.12.2018, 21:24
RE: ISO Loader 0.6.x Beta - gilvan999 - 31.12.2018, 04:21
RE: ISO Loader 0.6.x Beta - fafadou - 31.12.2018, 06:28
RE: ISO Loader 0.6.x Beta - gilvan999 - 31.12.2018, 06:38
RE: ISO Loader 0.6.x Beta - SWAT - 31.12.2018, 09:22
RE: ISO Loader 0.6.x Beta - fafadou - 31.12.2018, 14:59
RE: ISO Loader 0.6.x Beta - SWAT - 01.01.2019, 12:04
RE: ISO Loader 0.6.x Beta - fafadou - 01.01.2019, 13:02
RE: ISO Loader 0.6.x Beta - fafadou - 03.01.2019, 20:27
RE: ISO Loader 0.6.x Beta - fafadou - 05.01.2019, 16:41
RE: ISO Loader 0.6.x Beta - gilvan999 - 06.01.2019, 08:14
RE: ISO Loader 0.6.x Beta - fafadou - 08.01.2019, 03:35
RE: ISO Loader 0.6.x Beta - fafadou - 09.01.2019, 12:44
RE: ISO Loader 0.6.x Beta - fafadou - 18.01.2019, 12:39
RE: ISO Loader 0.6.x Beta - fafadou - 18.01.2019, 15:17
RE: ISO Loader 0.6.x Beta - fafadou - 21.01.2019, 02:42
RE: ISO Loader 0.6.x Beta - SWAT - 21.01.2019, 07:46
RE: ISO Loader 0.6.x Beta - gilvan999 - 21.01.2019, 22:36
RE: ISO Loader 0.6.x Beta - fafadou - 23.01.2019, 03:24
RE: ISO Loader 0.6.x Beta - fafadou - 30.01.2019, 14:12
RE: ISO Loader 0.6.x Beta - fafadou - 20.09.2020, 19:06
RE: ISO Loader 0.6.x Beta - SWAT - 29.09.2020, 15:08
RE: ISO Loader 0.6.x Beta - fafadou - 30.09.2020, 12:06
RE: ISO Loader 0.6.x Beta - SWAT - 06.11.2020, 14:36
RE: ISO Loader 0.6.x Beta - fafadou - 06.11.2020, 17:54
RE: ISO Loader 0.6.x Beta - SWAT - 06.11.2020, 18:27
RE: ISO Loader 0.6.x Beta - fafadou - 06.11.2020, 18:49
RE: ISO Loader 0.6.x Beta - pcwzrd13 - 06.11.2020, 22:40
RE: ISO Loader 0.6.x Beta - fafadou - 06.11.2020, 19:16
RE: ISO Loader 0.6.x Beta - SWAT - 07.11.2020, 05:47
RE: ISO Loader 0.6.x Beta - SWAT - 07.11.2020, 11:14
RE: ISO Loader 0.6.x Beta - fanhais - 06.11.2020, 22:22
RE: ISO Loader 0.6.x Beta - fanhais - 07.11.2020, 02:47
RE: ISO Loader 0.6.x Beta - pcwzrd13 - 07.11.2020, 01:08
RE: ISO Loader 0.6.x Beta - pcwzrd13 - 07.11.2020, 01:20
RE: ISO Loader 0.6.x Beta - fafadou - 07.11.2020, 14:51
RE: ISO Loader 0.6.x Beta - pcwzrd13 - 07.11.2020, 21:09
RE: ISO Loader 0.6.x Beta - fafadou - 08.11.2020, 03:50
RE: ISO Loader 0.6.x Beta - SWAT - 08.11.2020, 13:50
RE: ISO Loader 0.6.x Beta - pcwzrd13 - 08.11.2020, 06:26
RE: ISO Loader 0.6.x Beta - fafadou - 08.11.2020, 13:17
RE: ISO Loader 0.6.x Beta - SWAT - 08.11.2020, 16:50
RE: ISO Loader 0.6.x Beta - pcwzrd13 - 08.11.2020, 23:19
RE: ISO Loader 0.6.x Beta - SWAT - 09.11.2020, 06:29
RE: ISO Loader 0.6.x Beta - fafadou - 09.11.2020, 04:27
RE: ISO Loader 0.6.x Beta - SWAT - 09.11.2020, 12:18
RE: ISO Loader 0.6.x Beta - fafadou - 09.11.2020, 13:32
RE: ISO Loader 0.6.x Beta - SWAT - 09.11.2020, 14:10
RE: ISO Loader 0.6.x Beta - fafadou - 09.11.2020, 17:33
RE: ISO Loader 0.6.x Beta - SWAT - 10.11.2020, 06:51
RE: ISO Loader 0.6.x Beta - pcwzrd13 - 09.11.2020, 18:54
RE: ISO Loader 0.6.x Beta - fafadou - 09.11.2020, 21:23
RE: ISO Loader 0.6.x Beta - pcwzrd13 - 09.11.2020, 21:43
RE: ISO Loader 0.6.x Beta - fanhais - 09.11.2020, 22:17
RE: ISO Loader 0.6.x Beta - fanhais - 10.11.2020, 00:39
RE: ISO Loader 0.6.x Beta - pcwzrd13 - 10.11.2020, 01:34
RE: ISO Loader 0.6.x Beta - fafadou - 10.11.2020, 01:50
RE: ISO Loader 0.6.x Beta - fafadou - 10.11.2020, 12:15
RE: ISO Loader 0.6.x Beta - fafadou - 10.11.2020, 14:30
RE: ISO Loader 0.6.x Beta - SWAT - 10.11.2020, 14:11
RE: ISO Loader 0.6.x Beta - fafadou - 10.11.2020, 17:44
RE: ISO Loader 0.6.x Beta - SWAT - 11.11.2020, 07:39
RE: ISO Loader 0.6.x Beta - fafadou - 11.11.2020, 03:09
RE: ISO Loader 0.6.x Beta - Zychion - 11.11.2020, 07:44
RE: ISO Loader 0.6.x Beta - SWAT - 11.11.2020, 08:03
RE: ISO Loader 0.6.x Beta - fafadou - 11.11.2020, 13:02
RE: ISO Loader 0.6.x Beta - SWAT - 11.11.2020, 14:16
RE: ISO Loader 0.6.x Beta - fafadou - 11.11.2020, 21:03
RE: ISO Loader 0.6.x Beta - Zychion - 11.11.2020, 12:26
RE: ISO Loader 0.6.x Beta - SWAT - 11.11.2020, 15:11
RE: ISO Loader 0.6.x Beta - SWAT - 12.11.2020, 05:06
RE: ISO Loader 0.6.x Beta - fafadou - 12.11.2020, 12:58
RE: ISO Loader 0.6.x Beta - SWAT - 12.11.2020, 13:50
RE: ISO Loader 0.6.x Beta - pcwzrd13 - 11.11.2020, 18:55
RE: ISO Loader 0.6.x Beta - pcwzrd13 - 11.11.2020, 20:28
RE: ISO Loader 0.6.x Beta - pcwzrd13 - 11.11.2020, 20:38
RE: ISO Loader 0.6.x Beta - pcwzrd13 - 13.11.2020, 02:58
RE: ISO Loader 0.6.x Beta - fafadou - 11.11.2020, 22:34
RE: ISO Loader 0.6.x Beta - pcwzrd13 - 11.11.2020, 22:42
RE: ISO Loader 0.6.x Beta - pcwzrd13 - 12.11.2020, 00:16
RE: ISO Loader 0.6.x Beta - pcwzrd13 - 12.11.2020, 07:24
RE: ISO Loader 0.6.x Beta - SWAT - 12.11.2020, 10:37
RE: ISO Loader 0.6.x Beta - fafadou - 12.11.2020, 18:47
RE: ISO Loader 0.6.x Beta - SWAT - 13.11.2020, 16:44
RE: ISO Loader 0.6.x Beta - Zychion - 13.11.2020, 17:07
RE: ISO Loader 0.6.x Beta - fafadou - 13.11.2020, 19:47
RE: ISO Loader 0.6.x Beta - pcwzrd13 - 13.11.2020, 20:07
RE: ISO Loader 0.6.x Beta - Acey - 13.11.2020, 23:26
RE: ISO Loader 0.6.x Beta - SWAT - 14.11.2020, 12:50
RE: ISO Loader 0.6.x Beta - Zychion - 15.11.2020, 05:47
RE: ISO Loader 0.6.x Beta - pcwzrd13 - 15.11.2020, 07:37
RE: ISO Loader 0.6.x Beta - SWAT - 15.11.2020, 08:52
RE: ISO Loader 0.6.x Beta - pcwzrd13 - 15.11.2020, 17:09
RE: ISO Loader 0.6.x Beta - SWAT - 16.11.2020, 07:58
RE: ISO Loader 0.6.x Beta - fafadou - 16.11.2020, 19:17
RE: ISO Loader 0.6.x Beta - fafadou - 15.11.2020, 18:51
RE: ISO Loader 0.6.x Beta - pcwzrd13 - 16.11.2020, 21:11
RE: ISO Loader 0.6.x Beta - SWAT - 17.11.2020, 11:34
RE: ISO Loader 0.6.x Beta - pcwzrd13 - 17.11.2020, 17:59
RE: ISO Loader 0.6.x Beta - K470r - 17.11.2020, 07:05
RE: ISO Loader 0.6.x Beta - fafadou - 17.11.2020, 10:30
RE: ISO Loader 0.6.x Beta - K470r - 17.11.2020, 17:51
RE: ISO Loader 0.6.x Beta - SWAT - 17.11.2020, 15:02
RE: ISO Loader 0.6.x Beta - fafadou - 17.11.2020, 18:06
RE: ISO Loader 0.6.x Beta - pcwzrd13 - 18.11.2020, 02:29
RE: ISO Loader 0.6.x Beta - SWAT - 18.11.2020, 07:12
RE: ISO Loader 0.6.x Beta - pcwzrd13 - 18.11.2020, 18:32
RE: ISO Loader 0.6.x Beta - Zychion - 18.11.2020, 03:06
RE: ISO Loader 0.6.x Beta - pcwzrd13 - 18.11.2020, 03:47
RE: ISO Loader 0.6.x Beta - Zychion - 18.11.2020, 03:58
RE: ISO Loader 0.6.x Beta - pcwzrd13 - 18.11.2020, 04:05
RE: ISO Loader 0.6.x Beta - pcwzrd13 - 18.11.2020, 17:19
RE: ISO Loader 0.6.x Beta - fafadou - 18.11.2020, 16:23
RE: ISO Loader 0.6.x Beta - aldair - 18.11.2020, 17:29
RE: ISO Loader 0.6.x Beta - fanhais - 19.11.2020, 00:57
RE: ISO Loader 0.6.x Beta - fafadou - 19.11.2020, 01:13
RE: ISO Loader 0.6.x Beta - fanhais - 19.11.2020, 01:17
RE: ISO Loader 0.6.x Beta - aldair - 19.11.2020, 02:28
RE: ISO Loader 0.6.x Beta - SWAT - 19.11.2020, 07:39
RE: ISO Loader 0.6.x Beta - aldair - 19.11.2020, 07:54
RE: ISO Loader 0.6.x Beta - aldair - 19.11.2020, 12:29
RE: ISO Loader 0.6.x Beta - K470r - 20.11.2020, 06:19
RE: ISO Loader 0.6.x Beta - fafadou - 19.11.2020, 10:42
RE: ISO Loader 0.6.x Beta - SWAT - 19.11.2020, 16:59
RE: ISO Loader 0.6.x Beta - fafadou - 19.11.2020, 17:33
RE: ISO Loader 0.6.x Beta - SWAT - 20.11.2020, 06:27
RE: ISO Loader 0.6.x Beta - fafadou - 19.11.2020, 18:25
RE: ISO Loader 0.6.x Beta - fafadou - 19.11.2020, 19:50
RE: ISO Loader 0.6.x Beta - pcwzrd13 - 19.11.2020, 19:53
RE: ISO Loader 0.6.x Beta - fanhais - 19.11.2020, 20:38
RE: ISO Loader 0.6.x Beta - pcwzrd13 - 19.11.2020, 20:39
RE: ISO Loader 0.6.x Beta - aldair - 23.11.2020, 11:16
RE: ISO Loader 0.6.x Beta - K470r - 23.11.2020, 16:18
RE: ISO Loader 0.6.x Beta - aldair - 23.11.2020, 19:12
RE: ISO Loader 0.6.x Beta - fafadou - 19.11.2020, 22:28
RE: ISO Loader 0.6.x Beta - fanhais - 20.11.2020, 01:09
RE: ISO Loader 0.6.x Beta - fanhais - 20.11.2020, 02:51
RE: ISO Loader 0.6.x Beta - fanhais - 20.11.2020, 15:40
RE: ISO Loader 0.6.x Beta - fanhais - 20.11.2020, 16:17
RE: ISO Loader 0.6.x Beta - fanhais - 20.11.2020, 17:12
RE: ISO Loader 0.6.x Beta - fafadou - 20.11.2020, 16:47
RE: ISO Loader 0.6.x Beta - fafadou - 20.11.2020, 17:46
RE: ISO Loader 0.6.x Beta - fafadou - 20.11.2020, 18:49
RE: ISO Loader 0.6.x Beta - fafadou - 20.11.2020, 19:45
RE: ISO Loader 0.6.x Beta - pcwzrd13 - 20.11.2020, 22:22
RE: ISO Loader 0.6.x Beta - pcwzrd13 - 20.11.2020, 22:39
RE: ISO Loader 0.6.x Beta - pcwzrd13 - 21.11.2020, 00:41
RE: ISO Loader 0.6.x Beta - pcwzrd13 - 21.11.2020, 00:56
RE: ISO Loader 0.6.x Beta - K470r - 22.11.2020, 01:32
RE: ISO Loader 0.6.x Beta - fafadou - 21.11.2020, 14:09
RE: ISO Loader 0.6.x Beta - SWAT - 22.11.2020, 12:33
RE: ISO Loader 0.6.x Beta - K470r - 23.11.2020, 02:11
RE: ISO Loader 0.6.x Beta - fafadou - 23.11.2020, 16:29
RE: ISO Loader 0.6.x Beta - aldair - 23.11.2020, 18:07
RE: ISO Loader 0.6.x Beta - aldair - 23.11.2020, 18:21
RE: ISO Loader 0.6.x Beta - sundance2 - 24.11.2020, 05:11
RE: ISO Loader 0.6.x Beta - fafadou - 24.11.2020, 12:24
RE: ISO Loader 0.6.x Beta - fafadou - 24.11.2020, 13:02
RE: ISO Loader 0.6.x Beta - K470r - 25.11.2020, 00:02
RE: ISO Loader 0.6.x Beta - K470r - 25.11.2020, 15:37
RE: ISO Loader 0.6.x Beta - SWAT - 24.11.2020, 13:13
RE: ISO Loader 0.6.x Beta - fafadou - 24.11.2020, 17:47
RE: ISO Loader 0.6.x Beta - pcwzrd13 - 24.11.2020, 19:34
RE: ISO Loader 0.6.x Beta - fafadou - 24.11.2020, 20:47
RE: ISO Loader 0.6.x Beta - SWAT - 25.11.2020, 07:18
RE: ISO Loader 0.6.x Beta - sundance2 - 25.11.2020, 12:48
RE: ISO Loader 0.6.x Beta - SWAT - 27.11.2020 07:42
RE: ISO Loader 0.6.x Beta - MetalliC - 28.11.2020, 08:39
RE: ISO Loader 0.6.x Beta - SWAT - 29.11.2020, 09:51
RE: ISO Loader 0.6.x Beta - SWAT - 30.11.2020, 07:13
RE: ISO Loader 0.6.x Beta - fafadou - 25.11.2020, 16:46
RE: ISO Loader 0.6.x Beta - K470r - 25.11.2020, 17:44
RE: ISO Loader 0.6.x Beta - K470r - 25.11.2020, 18:01
RE: ISO Loader 0.6.x Beta - fafadou - 26.11.2020, 03:22
RE: ISO Loader 0.6.x Beta - K470r - 27.11.2020, 19:41
RE: ISO Loader 0.6.x Beta - kof888 - 27.11.2020, 10:15
RE: ISO Loader 0.6.x Beta - fafadou - 27.11.2020, 12:10
RE: ISO Loader 0.6.x Beta - SWAT - 27.11.2020, 12:30
RE: ISO Loader 0.6.x Beta - kof888 - 28.11.2020, 14:46
RE: ISO Loader 0.6.x Beta - fafadou - 27.11.2020, 13:53
RE: ISO Loader 0.6.x Beta - fafadou - 28.11.2020, 02:43
RE: ISO Loader 0.6.x Beta - K470r - 17.12.2020, 19:40
RE: ISO Loader 0.6.x Beta - pcwzrd13 - 28.11.2020, 20:48
RE: ISO Loader 0.6.x Beta - pcwzrd13 - 13.12.2020, 08:27
RE: ISO Loader 0.6.x Beta - SWAT - 13.12.2020, 14:34
RE: ISO Loader 0.6.x Beta - pcwzrd13 - 14.12.2020, 04:55
RE: ISO Loader 0.6.x Beta - SWAT - 14.12.2020, 14:32
RE: ISO Loader 0.6.x Beta - Mu. - 15.12.2020, 03:29
RE: ISO Loader 0.6.x Beta - aldair - 13.12.2020, 15:22
RE: ISO Loader 0.6.x Beta - fafadou - 21.12.2020, 12:32
RE: ISO Loader 0.6.x Beta - fafadou - 22.12.2020, 23:41
RE: ISO Loader 0.6.x Beta - fafadou - 24.12.2020, 18:13
RE: ISO Loader 0.6.x Beta - SWAT - 27.12.2020, 14:30
RE: ISO Loader 0.6.x Beta - fafadou - 27.12.2020, 15:14
RE: ISO Loader 0.6.x Beta - aldair - 02.01.2021, 00:55
RE: ISO Loader 0.6.x Beta - fafadou - 03.01.2021, 21:43
RE: ISO Loader 0.6.x Beta - aldair - 04.01.2021, 01:08
RE: ISO Loader 0.6.x Beta - aldair - 04.01.2021, 22:46
RE: ISO Loader 0.6.x Beta - luizroz - 04.01.2021, 13:18
RE: ISO Loader 0.6.x Beta - pcwzrd13 - 04.01.2021, 23:50
RE: ISO Loader 0.6.x Beta - pcwzrd13 - 05.01.2021, 01:19
RE: ISO Loader 0.6.x Beta - TeX - 04.01.2021, 00:16
RE: ISO Loader 0.6.x Beta - aldair - 04.01.2021, 23:08
RE: ISO Loader 0.6.x Beta - pcwzrd13 - 05.01.2021, 19:37
RE: ISO Loader 0.6.x Beta - fafadou - 06.01.2021, 13:10
RE: ISO Loader 0.6.x Beta - fafadou - 12.02.2021, 17:30
RE: ISO Loader 0.6.x Beta - pcwzrd13 - 24.02.2021, 20:47
RE: ISO Loader 0.6.x Beta - fafadou - 25.02.2021, 02:39
RE: ISO Loader 0.6.x Beta - pcwzrd13 - 25.02.2021, 21:48
RE: ISO Loader 0.6.x Beta - chth96 - 28.02.2021, 15:00
RE: ISO Loader 0.6.x Beta - fafadou - 28.02.2021, 21:48
RE: ISO Loader 0.6.x Beta - fafadou - 01.03.2021, 12:10
RE: ISO Loader 0.6.x Beta - fafadou - 01.03.2021, 19:48
RE: ISO Loader 0.6.x Beta - ParaMedic - 21.03.2021, 19:46
RE: ISO Loader 0.6.x Beta - SWAT - 23.03.2021, 10:33
RE: ISO Loader 0.6.x Beta - pcwzrd13 - 28.03.2021, 22:06
RE: ISO Loader 0.6.x Beta - pcwzrd13 - 29.03.2021, 01:05
RE: ISO Loader 0.6.x Beta - chth96 - 05.04.2021, 06:24
RE: ISO Loader 0.6.x Beta - chth96 - 19.05.2021, 11:56
RE: ISO Loader 0.6.x Beta - fafadou - 19.05.2021, 16:11
RE: ISO Loader 0.6.x Beta - chth96 - 19.05.2021, 22:08
RE: ISO Loader 0.6.x Beta - chth96 - 22.05.2021, 18:10
RE: ISO Loader 0.6.x Beta - hsb083 - 14.06.2021, 01:27
RE: ISO Loader 0.6.x Beta - fafadou - 25.08.2021, 12:22
RE: ISO Loader 0.6.x Beta - fafadou - 28.06.2022, 20:26
RE: ISO Loader 0.6.x Beta - fafadou - 18.07.2022, 19:45
RE: ISO Loader 0.6.x Beta - SWAT - 19.07.2022, 15:31
RE: ISO Loader 0.6.x Beta - fafadou - 19.07.2022, 23:58
RE: ISO Loader 0.6.x Beta - SWAT - 25.07.2022, 13:54
RE: ISO Loader 0.6.x Beta - pcwzrd13 - 25.07.2022, 18:42
RE: ISO Loader 0.6.x Beta - SWAT - 26.07.2022, 18:36
RE: ISO Loader 0.6.x Beta - fafadou - 18.08.2022, 18:54
RE: ISO Loader 0.6.x Beta - fafadou - 22.08.2022, 17:31
RE: ISO Loader 0.6.x Beta - chth96 - 28.10.2022, 15:16
RE: ISO Loader 0.6.x Beta - fafadou - 07.11.2022, 20:51
RE: ISO Loader 0.6.x Beta - SWAT - 25.11.2022, 17:12
RE: ISO Loader 0.6.x Beta - kof888 - 25.11.2022, 19:18
RE: ISO Loader 0.6.x Beta - SWAT - 26.11.2022, 18:46
RE: ISO Loader 0.6.x Beta - aldair - 26.11.2022, 19:29
RE: ISO Loader 0.6.x Beta - SWAT - 26.11.2022, 20:36
RE: ISO Loader 0.6.x Beta - aldair - 26.11.2022, 20:59
RE: ISO Loader 0.6.x Beta - fafadou - 25.11.2022, 22:15
RE: ISO Loader 0.6.x Beta - SWAT - 27.11.2022, 11:36
RE: ISO Loader 0.6.x Beta - fafadou - 27.11.2022, 05:59
RE: ISO Loader 0.6.x Beta - pcwzrd13 - 27.11.2022, 23:02
RE: ISO Loader 0.6.x Beta - SWAT - 28.11.2022, 07:09
RE: ISO Loader 0.6.x Beta - Zychion - 28.11.2022, 07:25
RE: ISO Loader 0.6.x Beta - fafadou - 28.11.2022, 02:21
RE: ISO Loader 0.6.x Beta - SWAT - 28.11.2022, 09:29
RE: ISO Loader 0.6.x Beta - fafadou - 29.11.2022, 12:10
RE: ISO Loader 0.6.x Beta - SWAT - 01.12.2022, 13:50

Похожие темы
Тема: Автор Ответов: Просмотров: Посл. сообщение
Баг ISO Loader 0.8.x Beta + preview of DreamShell v4.0 RC 5 SWAT 918 544064 01.02.2024 13:22
Посл. сообщение: SWAT
  ISO Loader 0.7.x Beta megavolt85 1195 1308006 04.12.2023 19:10
Посл. сообщение: Ro Magnus Larsson
  ISO LOADER does not boot anymore in my IDE HDD. HELP! Ro Magnus Larsson 3 7075 18.03.2021 06:30
Посл. сообщение: Ro Magnus Larsson
  Loader automation MilkeyWilkey 7 13810 27.05.2020 10:07
Посл. сообщение: MilkeyWilkey
  ISO Loader: can't display my folders/iso simonrobic 1 10216 14.08.2016 15:52
Посл. сообщение: megavolt85
  DreamShell 4.0 Beta 4 SWAT 173 519998 07.10.2013 18:48
Посл. сообщение: kof888
  Snes4all DS loader app alex 4 23035 26.06.2011 19:41
Посл. сообщение: alex
  DreamShell 4.0.0 Beta 3 SWAT 61 182139 24.12.2009 17:46
Посл. сообщение: SWAT
  DreamShell 4.0.0 Beta 2 SWAT 17 52611 18.06.2009 07:49
Посл. сообщение: SWAT
  DreamShell on PC Loader SWAT 4 24324 03.12.2007 02:43
Посл. сообщение: zaero

Переход:


Пользователи просматривают эту тему: 4 Гость(ей)