Displaying 2 results from an estimated 2 matches for "angelweb".
Did you mean:
angeles
2009 Jul 15
4
The Talking Moose
...ing programs or inserting disks. (The moose's behavior was highly customizable.) He's not for everybody, but I miss the guy.
Lo and behold, the project was resurrected for the modern Windows era:
http://www.halls.md/moose/index.htm
(There's also a Mac version at http://www.zathras.de/angelweb/moose.htm.)
It's a tiny, simple desktop Windows applet that seems to confine itself entirely to a nice and neat single directory (that is, there's no messy installation), but, much to my dismay, I cannot seem to get it to run in Wine, nor can I diagnose the problem. Can anyone else get it...
2008 Jan 05
0
Assembly on Mac OS needs to be relocatable
...mage
Mach-O shared libraries must be relocatable (-mdynamic-no-pic is a GCC
flag for Darwin that makes it generate code where only the external
references are relocatable, that's why the error message mentions that.)
I don't really know assembly, but based on <http://www.zathras.de/angelweb/blog-intel-assembler-on-mac-os-x.htm
>, I tried the following fix:
In c1_loop:
%ifdef FLAC__PUBLIC_NEEDS_UNDERSCORE
+%ifdef OBJ_FORMAT_macho
+ call .epilog
+.myAnchorPoint:
+ lea edi, [ebx + .myAnchorPoint + _FLAC__crc16_table]
+%else
mov edi, _FLAC__crc16_table
+%endif
%else
mov e...