Pelles C forum

C language => User contributions => Topic started by: TimoVJL on August 08, 2011, 09:22:31 PM

Title: Tiny Lousy HexViewer
Post by: TimoVJL on August 08, 2011, 09:22:31 PM
Here is small Tiny Lousy HexViewer that uses memory buffer (not memory mapped).
EDIT: 20110808 even smaller without RTL
EDIT: 20111015 fixed typo (TLHexView_WS_2.zip)
PS:
bcc 5.51 users can compile this with commands:
Code: [Select]
bcc32.exe -c -W TLHexView.c
ilink32.exe -M -aa -Tpe -c -V4.0 -Llib\PSDK NoCrt WinCRT1 TLHexView user32.lib, TLHexView.exe
Code: [Select]
; NoCrt startup code
; use WinMainCRTStartup as new starting point like MS linker do
; compile this with JWAsm.exe NorCrt.asm

.386p
.model flat, stdcall

extern   WinMainCRTStartup : proc
public _start
.code
_start:
jmp     WinMainCRTStartup
end _start
Title: Re: Tiny Lousy HexViewer
Post by: Stefan Pendl on October 15, 2011, 06:12:27 PM
There is an error in the column header, since it displays "10" after "09" and "0F" is missing ;)

Seems like a mix with decimal system ...