search for: 2c71ea1

Displaying 1 result from an estimated 1 matches for "2c71ea1".

Did you mean: 2c71ca1
2008 Nov 10
1
[PATCH 1/1] COMBOOT API: Add get current working directory call to most (revised)
...l strcpy - mov word[CurrentDirName], ROOT_DIR_WORD ; Write '/',0 to the CurrentDirName + mov dword[CurrentDirName], CUR_DIR_DWORD ; Write './',0,0 to the CurrentDirName call build_curdir_str mov di,ConfigName diff --git a/core/isolinux.asm b/core/isolinux.asm index fbd1ba0..2c71ea1 100644 --- a/core/isolinux.asm +++ b/core/isolinux.asm @@ -1170,6 +1170,9 @@ get_fs_structures: mov si,di mov di,CurrentDirName call strcpy + mov byte[di],0 ;done in case it's not word aligned + dec di + mov byte[di],'/' pop di pop si diff --git a/core/ldlinux.asm b/c...