search for: tenthumb

Displaying 7 results from an estimated 7 matches for "tenthumb".

Did you mean: tenthumbs
2004 Feb 02
10
SYSLINUX 2.09-pre2
This version contains a fix to mbr.asm, plus a version of Murali's menu system, but ported to gcc. Although gcc produces much bigger 16-bit code (since it's really 32-bit code with prefixes) I figured it would be much easier for people to deal with since it requires the configuration to be compiled in. That being said, it's a *very* powerful menu system, partially *because*
2004 Feb 01
1
Getting syslinux to recognize external text video mode changes
Sometimes useful information scrolls off the screen before it can be read. I wrote a simple program that can be called from syslinux that offers will change video modes. Unfortunately, syslinux does not recognize the mode change. Is it possible to get syslinux to see the change and use it? Thanks. -- Pallas 2004-02-01 17:14:40.939 UTC (JD 2453037.218529) X = 1.499960648, Y =
2004 Feb 02
1
Bug in mbr.asm
Found this small bug. It won't print error messages. A simple fix. --- mbr.asm.orig 2002-10-03 06:02:50.000000000 -0400 +++ mbr.asm 2004-01-08 06:55:13.000000000 -0500 @@ -165,7 +165,7 @@ die: .msgloop: lodsb - xor al,al + or al,al jz .now mov ah,0Eh ; TTY output mov
2004 Feb 08
2
Syslinux malloc
I mentioned in a private email recently that it would be useful if syslinux had a malloc implementation. I have one now if anyone's interested. -- Hebe 2004-02-08 14:26:08.183 UTC (JD 2453044.101484) X = -1.159504592, Y = 2.015990327, Z = 0.638260245 X' = -0.010415779, Y' = -0.003652077, Z' = 0.001024628
2004 Feb 20
1
Com32 library
With not too much effort I've made Doug Lea's malloc work in the com32 environment. I've also hacked up some start up code to create the argv array so it's possible to start with main. Should I post it here or what? -- Jupiter 2004-02-20 21:17:51.911 UTC (JD 2453056.387406) X = -5.172371620, Y = 1.409543883, Z = 0.730102025 X' = -0.002302696, Y' =
2004 Apr 27
2
Gcc 3.4.0 and syslinux-2.09 menu
The menu directory won't compile with gcc 3.4.0 because gcc complains that "ebp" cannot be used as a constraint. If preserving ebp is necessary then it will have to be done in the assembler code. Gcc 3.3.3 just seems to ignore the constraint. It didn't do anything special to preserve the register. I also noticed that getnumrows returns the contents of 0x484 which is the
2004 Aug 20
0
Syslinux 2.11 and gcc 3.4.1
Memdisk still won't build because gcc doesn't always inline functions. Here's a patch I used. --- memdisk/Makefile.orig 2004-01-24 16:37:22.000000000 -0500 +++ memdisk/Makefile 2004-08-18 06:34:53.000000000 -0400 @@ -17,11 +17,12 @@ then echo $(1); else echo $(2); fi) M32 := $(call gcc_ok,-m32,) +MINLINE := $(call gcc_ok,-minline-all-stringops,)