Просмотр сообщений

В этом разделе можно просмотреть все сообщения, сделанные этим пользователем.


Сообщения - pix07

Страницы: Назад 1 [2]
31
Hard'n'Soft / Windows Emulation Wine HQ
« : 11 Декабрь 2018, 22:03:46 »
Цитата
Wine (originally an acronym for "Wine Is Not an Emulator") is a compatibility layer capable of running Windows applications on several POSIX-compliant operating systems, such as Linux, macOS, & BSD. Instead of simulating internal Windows logic like a virtual machine or emulator, Wine translates Windows API calls into POSIX calls on-the-fly, eliminating the performance and memory penalties of other methods and allowing you to cleanly integrate Windows applications into your desktop.



Цитата
Wine 4.0-rc1 Released

December 7, 2018

The Wine development release 4.0-rc1 is now available.

This is the first release candidate for the upcoming Wine 4.0. It marks the beginning of the code freeze period. There have been many last minute changes, so please give this release a good testing to help us make 4.0 as good as possible.

What's new in this release:

Preloader implemented on mac OS.
Mouse cursor support on Android.
Updates to the timezone database.
Vulkan support updated to the latest spec.
Stream I/O support in WebServices.
Better palette support in WindowsCodecs.
Synchronization objects support for kernel drivers.
Various bug fixes.

https://wiki.winehq.org/Download

32
missing  parent  rom  and CHD image.

if still not work download latest mame.

latest  mame is :  0.204

and  did you have bios  pack.

and did you audit all with F1

i was find info that it works  on mame 0.198

other way is winkawaks.

work on kawaks  :
http://www.kawaks.org/downloads.htm

adding screen how should rom looking


search for : Super Street Fighter II: The New Challengers (World 931005)

34
http://www.emucr.com/2018/01/bsnes-plus-git-20180117.html

Цитата
What's new
- "Step over" and "step out" buttons in debugger
- Improved debugger UI with register editing
- Improved handling of address mirroring for breakpoints (extends to the entire address space, not just RAM)
- Real-time code and data highlighting in memory editor, with fast searching for known code/data locations and unexplored regions
- Cartridge ROM and RAM views in memory editor for mapper-agnostic analysis
- SA-1 disassembly and debugging
- SA-1 bus and BW-RAM viewing and (partial) usage logging
- Super FX disassembly and debugging
- Super FX bus viewing and usage logging
- SPC file dumping
- IPS and BPS soft patching
- Multiple emulation improvements backported from bsnes/higan (mostly via bsnes-classic)

Coming soon
- Rewritten memory editor
- On-the-fly ROM saving and reloading from the memory editor for quick hacking and testing
- More keyboard shortcuts for menus, etc.
- Similar addressing improvements for cheats

bsnes-plus Git Changelog:
* Merge pull request #153 from LuigiBlood/master
* BSX code clean up and more accurate reset values
* Satellaview Bigger Data File again
* Support Bigger Satellite Data Files

35
As far i know its in early stage.
latest info is on emucr.
https://www.emucr.com/2018/12/cxbx-reloaded-git-20181202.html
Цитата
Cxbx Reloaded Git Changelog:
* Merge pull request #1511 from LukeUsher/debugging-hangs
* Workaround a hang when PsCreateSystemThreadEx returns too soon
* Fix a crash in Morrowind, add a test_case to notify us of the situation if it occurs elsewhere
* More tweaks
* Call SystemRoutine directly instead of bootstrap voodoo
* Stop EmuX86 spamming the log in Unreal Championship, this kills performance

37
Эмуляторы консолей 1-4 поколений / Snes9x
« : 23 Сентябрь 2018, 18:53:07 »
now latest is snes9x  1.54  : http://www.snes9x.com/phpbb3/viewtopic.php?f=8&t=23752
my fault latest is 1.56.2 : http://snes9x.ipherswipsite.com

38
there are no guide how compile it  i was  search in readme.txt

here  the makefile  for gcc its should be edited
there is no mips compiler , mips is build in GCC
so  there is no build linker  and need be fixed
 rewrite code  or change in makefile
O  mean optymalize
CC compiler GCC mips version
and  build in linker  to link files
because GCC can find it comiple with makefile  is impossible
and i find other solution :
https://www.mips.com/develop/tools/codescape-mips-sdk/

other solution is : https://packages.debian.org/pl/sid/gcc-mips-linux-gnu

mips GCC for linux

#===================================================================
#                                                                   
#  makefile : Make file for PSX
#                                                                   
#  1999/12/26  Racoon  New preparation                             
#  2000/06/07  Racoon
#                                                                   
#===================================================================

CC = mipsgcc
CFLAGS   = -O2
LINKER  = -Xlinker -Ttext -Xlinker 80090000 -Xlinker -meco -Xlinker -s -Xlinker -Map -Xlinker main.map

PROG = pNesX
OBJS = K6502a.o pNesX.o pNesX_System_Psx.o pNesX_Mapper.o PSX_Spu.o
HEADERS = pNesX.h pNesX_Mapper.h pNesX_System.h pNesX_Types.h K6502.h

all: $(PROG)

pNesX.o : pNesX.c $(HEADERS)
   $(CC) -c $(CFLAGS) -o $@ $<

pNesX_Mapper.o : pNesX_Mapper.c $(HEADERS)
   $(CC) -c $(CFLAGS) -o $@ $<

pNesX_System_Psx.o : pNesX_System_Psx.c $(HEADERS)
   $(CC) -c $(CFLAGS) -o $@ $<

PSX_Spu.o : PSX_Spu.c $(HEADERS)
   $(CC) -c -o $@ $<

K6502a.o : K6502a.s $(HEADERS)
   mipsas -O0 -B -ahls=k6502.lst $<

$(PROG): $(OBJS)
   $(CC) $(LINKER) -o $@ $(OBJS) -lps
   combine2 pNesX.scr pNesX.exe
   exefixup pNesX.exe
   del pNesX.exe
   ren padded.exe pNesX.exe

clean:
   del *.o

.PHONY: all clean

39
im close to compile  for compilation you need  mingw  gcc compiler  with msys (better to have latest).

i need find how to fix error.

https://drive.google.com/open?id=1pnbF3p74NKYn2X1eQHpkSFjRbY4aIeS4 (mingw 6.3.0  with msys)
comand to compile is
make -march=mips1
march mean my architecture

here more info :
https://gcc.gnu.org/onlinedocs/gcc/MIPS-Options.html

im dont know  which  mips is correct
and how  set up to correct processor

its detect only mine  :-\


im try  do the same with cygwin.

and i was find other info:

http://faculty.cse.tamu.edu/bettati/Courses/410/2008C/Projects/gxemulcygwin.html

its should generate mips code.



40
Эмуляторы компьютеров / Dos Roms
« : 07 Сентябрь 2018, 14:41:05 »
Yaranga, Большое спасибо.

41
Эмуляторы компьютеров / Dos Roms
« : 07 Сентябрь 2018, 12:50:35 »
почему здесь у нас нет старых игр dos  :(
У меня есть коллекция из 300 ГБ
могу я добавить его здесь?

Страницы: Назад 1 [2]