search for: bcopyxx_stack

Displaying 1 result from an estimated 1 matches for "bcopyxx_stack".

2014 Mar 01
1
[syslinux:master] core, bios: Move __syslinux_shuffler_size to assembly
...2 files changed, 7 insertions(+), 8 deletions(-) > > diff --git a/core/bcopyxx.inc b/core/bcopyxx.inc > index cfdda0b..2bdc053 100644 > --- a/core/bcopyxx.inc > +++ b/core/bcopyxx.inc > @@ -316,5 +316,12 @@ RM_IDT_ptr: dw 0FFFFh ; Length (nonsense, but matches CPU) > > bcopyxx_stack equ 128 ; We want this much stack > > + section .rodata > + global __syslinux_shuffler_size > + extern __bcopyxx_len > + align 4 > +__syslinux_shuffler_size: > + dd __bcopyxx_len > + > bits 16 > section .text16 > diff --git a/core/shuffler.c b/core/sh...