Search found 7 matches

by JRMoore
Thu Oct 14, 2010 4:47 am
Forum: Latest Release Information
Topic: VisualBoyAdvance-M SVN877 [linux only release at this moment]
Replies: 42
Views: 54742

VisualBoyAdvance-M SVN877 [linux only release at this moment]

As far as I know running the MFC version of VBA-M under Wine works really well. Â Anyway, the thing you're having with OpenGL probably has to do with the fact that you're in a 64-bit Linux using the 32-bit binary, you'd need 32-bit libs for that to work. Â You can always build the emulator yoursel...
by JRMoore
Mon Oct 11, 2010 6:54 am
Forum: News and Emulation Updates
Topic: Future builds of VBA-M may require the VC10 runtime
Replies: 26
Views: 37119

Future builds of VBA-M may require the VC10 runtime

[img]<fileStore.core_Emoticons>/emoticons/ohmy.png[/img]/emoticons/ohmy@2x.png 2x" width="20" height="20" /> Impressive... even Agner Fog is involved!!! What a difference in the VIA Nano tests... Â I know there are some switches to add alternative paths or to target an spec...
by JRMoore
Sun Oct 10, 2010 8:34 am
Forum: News and Emulation Updates
Topic: Future builds of VBA-M may require the VC10 runtime
Replies: 26
Views: 37119

Future builds of VBA-M may require the VC10 runtime

That may be, It was the same with VS2008 as the runtime and standard C++ library were included too (no dependency on msvcr90.dll, msvcp90.dll or mfc90.dll) but runtime and MFC in VS2010 are slightly bigger (same as the other three but 100 instead of 90). Â I know some people for small programs link...
by JRMoore
Sun Oct 10, 2010 8:00 am
Forum: News and Emulation Updates
Topic: Future builds of VBA-M may require the VC10 runtime
Replies: 26
Views: 37119

Future builds of VBA-M may require the VC10 runtime

Yes, GCC in no option in this project and I was aware of that problem with Intel compilers (at least years ago it was crazy, I don't know how if behaves now). I only have access to the new Parallel Studio through my employers and was doing some tests. Â The important bit is that the binaries are be...
by JRMoore
Sat Oct 09, 2010 8:13 pm
Forum: News and Emulation Updates
Topic: Future builds of VBA-M may require the VC10 runtime
Replies: 26
Views: 37119

Future builds of VBA-M may require the VC10 runtime

Hello Squall Leonhart, about the VC++ 2010 runtime I don't think it will be necessary even building with VS2010. Â Right now the project files are set to use the /MT switch which creates executables linked to the static version of the runtime (multi-threaded, the single threaded version is long dea...
by JRMoore
Thu May 13, 2010 2:28 pm
Forum: Latest Release Information
Topic: How to build VBA-M from the SVN code in Linux.
Replies: 1
Views: 21431

How to build VBA-M from the SVN code in Linux.

I have made a guide covering it more or less and posted it in the Emuforums forum. I'll post it here too: This is a guide for people who would like to build VBA-M from its development source code in Linux and use it either through the SDL or the GTK+ interfaces. First of all, dependencies. As far as...
by JRMoore
Mon May 03, 2010 9:44 pm
Forum: Core
Topic: RRX implementation in x86 assembly.
Replies: 0
Views: 2833

RRX implementation in x86 assembly.

Hello, looking at the code I think I don't understand how RRX is implemented in x86 assembly. Â The code right now is the following: Â #define RRX_OFFSET \ __asm { \ __asm bt dword ptr C_FLAG, 0 \ __asm rcr offset, 1 \ } Â The bit test sets the carry flag, but I don't see it using the offset to g...