
TailBite 1.0 Preview, soon in PureProject and PureArea
Moderators: gnozal, ABBKlaus, lexvictory
-
- Addict
- Posts: 2344
- Joined: Mon Jun 02, 2003 9:16 am
- Location: Germany
- Contact:
Thanks, and don't forget to enable OnError supportEl_Choni wrote:I think I'll release it today with strings fixed (other bugs are on the list yet).

I updated my coLinux(The knoppix images are still there), but now it shows a grey or black screen and nothing appears, so I have to reboot(alt+tab doesn't work, windows key doesn't work, ...).El_Choni wrote:Sorry about that loss, how could that happen?
bye,
Daniel
Daniel
-
- Addict
- Posts: 2344
- Joined: Mon Jun 02, 2003 9:16 am
- Location: Germany
- Contact:
You could launch the knoppix image with vmware or vmwareplayer or if it's a plain .img with QEMU
Visit www.sceneproject.org
-
- Addict
- Posts: 2344
- Joined: Mon Jun 02, 2003 9:16 am
- Location: Germany
- Contact:
-
- PureBasic Expert
- Posts: 4229
- Joined: Sat Apr 26, 2003 8:27 am
- Location: Strasbourg / France
- Contact:
Version: 1.3 PR 0.3 Date: May 15th 2006Polo wrote:Can't wait to make libs again !
http://inicia.es/de/elchoni/TailBite/
For free libraries and tools, visit my web site (also home of jaPBe V3 and PureFORM).
-
- PureBasic Expert
- Posts: 4229
- Joined: Sat Apr 26, 2003 8:27 am
- Location: Strasbourg / France
- Contact:
Some errors if found (Version: 1.3 PR 0.3 Date: May 15th 2006) :El_Choni wrote:There are still some bugs and PB4 features missing, but i'd like to hear about new bugs, etc., before adding features like default values for arguments, etc.
1. Imported functions seem not to be supported yet ?
Code: Select all
Import "C:\Purebasic400\Program\PureZIP_O.lib"
ZLIBCompress(*DestBuffer, *DestBufferLen, *SourceBuffer, SourceBufferLen.l) As "_compress@16"
etc...
EndImport
2. Inline ASM problem
Code: Select all
; ACTIVER l'ASSEMBLEUR EN LIGNE !
; Conversion AsciiDosLatinUS vers AsciiWinLatin1 (caractères accentués)
; par Denis (Forum Français)
ProcedureDLL PureZIP_AsciiDosLatinUS_To_AsciiWinLatin1(StringPointer.l) ; Transforms a string from ASCII DOS Latin US to ASCII WIN Latin 1
; la chaîne est transformée directement en mémoire
; Chaine.l est l'adresse de la chaîne donc passer la chaîne avec @
; Ex: AsciiDosLatinUS_To_AsciiWinLatin1(@MaChaine.s)
;
! LEA Ebx, [TableConversion]
MOV Ecx, StringPointer
! Boucle :
! MOV al, byte [Ecx]
! TEST al, al
! JZ FinChaine
! CMP al, $80
! JNA CarSuivant
! ADD al, -$80
! XLATB
! MOV byte[Ecx], al
! CarSuivant:
! INC Ecx
! JMP Boucle
;
; table des 128 caractères de remplacement
;
! TableConversion:
! DB $C7, $FC, $E9, $E2, $E4, $E0, $E5, $E7, $EA, $EB, $E8, $EF, $EE, $EC, $C4, $C5
etc...
! FinChaine:
EndProcedure
3. String problem
Code: Select all
; SORT - To much, I can mail it to you if you want
When compiling test code (using library) : POLINK: error : Unresolved external symbol 'PureLVSORT_LIB_4__SYS_StringInferior'.
4. Access violation
Code: Select all
; SMTP - To much, I can mail it to you if you want
No error when compiling test code.
Created executable crashes at start (access violation) : debugger does not catch any error.
For free libraries and tools, visit my web site (also home of jaPBe V3 and PureFORM).
-
- PureBasic Expert
- Posts: 4229
- Joined: Sat Apr 26, 2003 8:27 am
- Location: Strasbourg / France
- Contact:
Files sent to your 'inicia.es' account.El_Choni wrote:Thank you very much, gnozal. I'll have a look at those; could you e--mail me 3 and 4? TIA
For free libraries and tools, visit my web site (also home of jaPBe V3 and PureFORM).