[v0.1.2] Fixed MEM2 range
This commit is contained in:
parent
8dc66466cc
commit
0ddaa379e5
3 changed files with 4 additions and 2 deletions
|
@ -1,4 +1,6 @@
|
||||||
# Change Log
|
# Change Log
|
||||||
|
## 0.1.2 (2023/03/27)
|
||||||
|
- Fixed MEM2 range
|
||||||
## 0.1.1 (2023/03/27)
|
## 0.1.1 (2023/03/27)
|
||||||
- Fixed bug reading MEM2
|
- Fixed bug reading MEM2
|
||||||
## 0.1.0 (2023/03/09)
|
## 0.1.0 (2023/03/09)
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[metadata]
|
[metadata]
|
||||||
name = supDolphinWS-server
|
name = supDolphinWS-server
|
||||||
version = 0.1.1
|
version = 0.1.2
|
||||||
author = sup39
|
author = sup39
|
||||||
author_email = sms@sup39.dev
|
author_email = sms@sup39.dev
|
||||||
description = A WebSocket server for accessing memory of emulated games in Dolphin
|
description = A WebSocket server for accessing memory of emulated games in Dolphin
|
||||||
|
|
|
@ -8,7 +8,7 @@ from multiprocessing.shared_memory import SharedMemory
|
||||||
MEM1_START = 0x80000000
|
MEM1_START = 0x80000000
|
||||||
MEM1_END = 0x81800000
|
MEM1_END = 0x81800000
|
||||||
MEM2_START = 0x90000000
|
MEM2_START = 0x90000000
|
||||||
MEM2_END = 0x93000000
|
MEM2_END = 0x94000000
|
||||||
MEM2_OFFSET = 0x4040000
|
MEM2_OFFSET = 0x4040000
|
||||||
|
|
||||||
dolphinProcNames = \
|
dolphinProcNames = \
|
||||||
|
|
Reference in a new issue