|
2008-08-17
, 18:47
|
Posts: 3,428 |
Thanked: 2,856 times |
Joined on Jul 2008
|
#2
|
The Following User Says Thank You to fatalsaint For This Useful Post: | ||
|
2008-08-18
, 18:48
|
|
Moderator |
Posts: 7,109 |
Thanked: 8,820 times |
Joined on Oct 2007
@ Vancouver, BC, Canada
|
#3
|
|
2008-08-18
, 18:54
|
Posts: 3,428 |
Thanked: 2,856 times |
Joined on Jul 2008
|
#4
|
The Following User Says Thank You to fatalsaint For This Useful Post: | ||
|
2008-08-19
, 03:43
|
|
Posts: 549 |
Thanked: 502 times |
Joined on Feb 2008
@ Bowling Green Ohio (united states)
|
#5
|
|
2008-08-19
, 04:18
|
Posts: 3,428 |
Thanked: 2,856 times |
Joined on Jul 2008
|
#6
|
#define vec_mult _vec_mult INLINE int _vec_mult(int x, int y) { int result; asm ( "movl %1 , %0 ; " "imull %2 ; " /* do the multiply */ "movl %%edx , %%eax ; " : "=&a" (result) /* the result has to go in eax */ : "mr" (x), /* x and y can be regs or mem */ "mr" (y) : "%edx", "%cc" /* clobbers edx and flags */ ); return result; } #endif
INLINE int _vec_mult(int x, int y) { int res_hi, res_lo; __asm__ __volatile__ ("smull\t%1,%0,%2,%3" : "=r"(res_hi), "=r"(res_lo) : "r"(x), "r"(y) ); return res_hi; }
The Following User Says Thank You to fatalsaint For This Useful Post: | ||
|
2008-08-19
, 04:21
|
Posts: 3,428 |
Thanked: 2,856 times |
Joined on Jul 2008
|
#7
|
xapple2 wold be cool..
Btw, how did compiling qemu go?, have you had enny luck?
It is partly written in 386 (AT&T) assembler and partly in C
|
2008-08-19
, 13:11
|
Posts: 3,428 |
Thanked: 2,856 times |
Joined on Jul 2008
|
#8
|
|
2008-08-19
, 18:46
|
|
Moderator |
Posts: 7,109 |
Thanked: 8,820 times |
Joined on Oct 2007
@ Vancouver, BC, Canada
|
#9
|
|
2008-08-19
, 19:19
|
Posts: 3,428 |
Thanked: 2,856 times |
Joined on Jul 2008
|
#10
|
Thanks, fatalsaint! Maemo has a working xmame binary, it's just really old (0.58). I'm pretty sure that it is the SDL version. I wonder if I can just drop the maemo xmame binary into Debian?
Is there any software you cannot find in the Debian repositories that you would LIKE on your tablet's Deblet?? I can't guarantee all software will work obviously... but I'll try and build a .deb of any source package you would like working on your tablet.
If you have any software you want... or software you had to compile from source and you want a .deb of it... just let me know and I'll see what I can do!
Right now.. as b-man posted in the other thread.. I ported emelfm2. He uploaded the package to Rapidshare. I have also built a working kde4-minimal environment for debian.
I know some people have issues with rapidshare.. or if the download is interrupted or whatever and you can't get it again for an hour.. you can try my Local Host.. I definitely recommend you try Rapidshare first as the download will be faster.. until I get a business grade host these files are hosted off my DSL line at home . . you will need to pm me if you want the kde4 deb's however.. they are rather large and I can't afford the constant upload speed of a bunch of people downloading kde directly from me.. these will wait till I get the business hosting before I publish those.
Note: This is to load on the DEBIAN os ... not the Maemo default Tablet OS.. I do not know how to Hildonize an app (yet).
If I've helped you or you use any of my packages feel free to help me out.
-----------------------------------------------------------------------------------
Maintaining:
pyRadio - Pandora Radio on your N900, N810 or N800!
Last edited by fatalsaint; 2008-08-17 at 18:44.