diff options
| author | H. Peter Anvin <hpa@zytor.com> | 2008-06-15 10:37:10 -0700 |
|---|---|---|
| committer | H. Peter Anvin <hpa@zytor.com> | 2008-06-15 10:37:10 -0700 |
| commit | 89e10c2e8a7d9592a400824f9667b2487014f633 (patch) | |
| tree | 2dd87978683aa44d0d4633444805e2b3984ed13e /core/extlinux.asm | |
| parent | 958ddda00522f768bf9adc86c0d5b446e0a672cf (diff) | |
| download | syslinux-89e10c2e8a7d9592a400824f9667b2487014f633.tar.gz | |
Mechanically rename the writestr functions
Mechanically rename the writestr functions:
writestr -> writestr_early
cwritestr -> writestr
... to reflect which function is more appropriate to call in normal
circumstances.
Diffstat (limited to 'core/extlinux.asm')
| -rw-r--r-- | core/extlinux.asm | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/core/extlinux.asm b/core/extlinux.asm index 1b969c7c..087fc3c1 100644 --- a/core/extlinux.asm +++ b/core/extlinux.asm @@ -603,7 +603,7 @@ ldlinux_ent: ; Tell the user we got this far ; mov si,syslinux_banner - call writestr + call writestr_early ; ; Tell the user if we're using EBIOS or CBIOS @@ -615,7 +615,7 @@ print_bios: mov si,ebios_name .cbios: mov [BIOSName],si - call writestr + call writestr_early section .bss %define HAVE_BIOSNAME 1 @@ -677,7 +677,7 @@ verify_checksum: ; Uh-oh, something went bad... ; mov si,checksumerr_msg - call writestr + call writestr_early jmp kaboom ; @@ -687,11 +687,11 @@ verify_checksum: ; ; -; writestr: write a null-terminated string to the console +; writestr_early: write a null-terminated string to the console ; This assumes we're on page 0. This is only used for early ; messages, so it should be OK. ; -writestr: +writestr_early: .loop: lodsb and al,al jz .return @@ -749,7 +749,7 @@ all_read: ; in Sector 1, but makes a lot more sense here. ; mov si,copyright_str - call writestr + call writestr_early ; ; Insane hack to expand the DOS superblock to dwords @@ -1309,7 +1309,7 @@ unmangle_name: call strcpy kaboom2: mov si,err_bootfailed - call cwritestr + call writestr cmp byte [kaboom.again+1],18h ; INT 18h version? je .int18 call getchar |
