The MASM Forum Archive 2004 to 2012

Project Support Forums => GoAsm Assembler and Tools => Topic started by: FlySky on August 14, 2009, 09:43:33 AM

Title: Mod player (uFMOD)
Post by: FlySky on August 14, 2009, 09:43:33 AM
Hey guys,

Not really having a programming question. I was wondering if there is any music player for goasm. uFMOD for example can play .xm files small music files, but the source I found is for MASM which isn't having the GoASM syntax. Anyone of you guys know about a translation?

Thanks,

FlySky
Title: Re: Mod player (uFMOD)
Post by: ecube on August 14, 2009, 02:39:10 PM
You thought about converting it yourself? Jeremy has a tool somewhere to convert masm code to GoASM minus the macros I believe, but its not hard to do manually.
Title: Re: Mod player (uFMOD)
Post by: FlySky on August 14, 2009, 02:43:30 PM
Hey there, I think I convert a lot without probs, but not sure about the Library ufMOD uses. It uses an .lib file for masm.

I will start converting I will share the end result with you guys.
Title: Re: Mod player (uFMOD)
Post by: donkey on August 14, 2009, 04:13:58 PM
GoAsm supports static libraries, there should be no problem using the lib with GoAsm. Gennerally if you put the lib in the same folder as the asm file you would just specify the lib name in a call to functions it contains:

invoke somelibrary.lib:somelibfunction, param1, param2

The way I generally do it is to set up aliases for the lib functions

somelibfunction equ somelibrary.lib:somelibfunction

invoke somelibfunction, param1, param2


The only place you would have a problem is where one static library references a variable or function in another static library, GoAsm does not support this.

Edgar