I think, you have misinterpreted this switch!
This switch is to use, for example mmx extension is supported by CPU and Lib/Userlib!
In the moment, there is IMHO no Userlib, that support this, so the switch is useles
in this time :wink:
It's just what I want to do, writing some user libs that use ...
Search found 94 matches
- Tue Nov 26, 2013 9:49 pm
- Forum: Coding Questions
- Topic: Bug with DYNAMICCPU?
- Replies: 6
- Views: 1719
- Tue Nov 26, 2013 6:05 pm
- Forum: Coding Questions
- Topic: Bug with DYNAMICCPU?
- Replies: 6
- Views: 1719
Bug with DYNAMICCPU?
It seems there is a problem with the /DYNAMICCPU switch on PB 5.21 LTS on windows 7 64bit.
When I use it with the 32 bit compiler the "Dynamic0", "Dynamic1" and so on labels are missing a colon, so you get an assembler error.
With the 64 Bit compiler there are two errors in the emited asm, first ...
When I use it with the 32 bit compiler the "Dynamic0", "Dynamic1" and so on labels are missing a colon, so you get an assembler error.
With the 64 Bit compiler there are two errors in the emited asm, first ...
- Thu Oct 07, 2010 11:14 pm
- Forum: Coding Questions
- Topic: PB 4.51f x86 Size of character in resident is fixed
- Replies: 2
- Views: 711
Re: PB 4.51f x86 Size of character in resident is fixed
@freak: Many thanks for this fast reply at this late hour
Will change my resident building tool to always create both versions
Will change my resident building tool to always create both versions
- Thu Oct 07, 2010 9:37 pm
- Forum: Coding Questions
- Topic: PB 4.51f x86 Size of character in resident is fixed
- Replies: 2
- Views: 711
PB 4.51f x86 Size of character in resident is fixed
Using PB V4.51 final on XP 32bit
There seem to be a bug in the creation of resident files with the size of characters (.c) in structures.
If you use such structures, the size of .c stays as the compiler setting of ascii / unicode generated code when the resident file was created.
Structure ...
There seem to be a bug in the creation of resident files with the size of characters (.c) in structures.
If you use such structures, the size of .c stays as the compiler setting of ascii / unicode generated code when the resident file was created.
Structure ...
- Sun Jan 25, 2009 3:57 am
- Forum: Coding Questions
- Topic: Freememory() in thread with debugger enabled
- Replies: 8
- Views: 1619
- Sun Jan 04, 2009 6:59 pm
- Forum: Coding Questions
- Topic: NextElement after DeleteElement
- Replies: 7
- Views: 1474
- Sun Jan 04, 2009 5:27 pm
- Forum: Coding Questions
- Topic: NextElement after DeleteElement
- Replies: 7
- Views: 1474
- Sun Jan 04, 2009 5:02 pm
- Forum: Coding Questions
- Topic: mdi question
- Replies: 2
- Views: 1080
- Sun Jan 04, 2009 3:55 pm
- Forum: Coding Questions
- Topic: Sort (structured) Linked list via multiple fields
- Replies: 8
- Views: 5166
- Sun Jan 04, 2009 3:34 pm
- Forum: Coding Questions
- Topic: NextElement after DeleteElement
- Replies: 7
- Views: 1474
NextElement after DeleteElement
Run this an you see that not every second element gets deleted as one would expect:
#ListSize = 20
OpenConsole()
NewList l1.l()
For n = 1 To #ListSize
AddElement(l1())
l1() = n
Next n
ResetList(l1())
PrintN("Before deletetion")
n = 0
While NextElement(l1())
PrintN(RSet(Str(n), 3 ...
#ListSize = 20
OpenConsole()
NewList l1.l()
For n = 1 To #ListSize
AddElement(l1())
l1() = n
Next n
ResetList(l1())
PrintN("Before deletetion")
n = 0
While NextElement(l1())
PrintN(RSet(Str(n), 3 ...
- Sun Jan 04, 2009 1:07 am
- Forum: General Discussion
- Topic: The Chaos that is Object Oriented Programming
- Replies: 8
- Views: 3642
- Fri Dec 26, 2008 1:41 am
- Forum: Feature Requests and Wishlists
- Topic: Please add GadgetMouseX / Y
- Replies: 6
- Views: 1555
- Thu Dec 25, 2008 10:41 am
- Forum: Feature Requests and Wishlists
- Topic: Please add GadgetMouseX / Y
- Replies: 6
- Views: 1555
Please add GadgetMouseX / Y
Happy Christmas!
Is it to late for Christmas wishes? ;)
Would be nice to have a GadgetMouseX / Y function to tell the position
relative to the upper left corner of a gadget,
I know it can be done with simple API funtions on Windows,
but it would be nice to have a cross platform funtion build in ...
Is it to late for Christmas wishes? ;)
Would be nice to have a GadgetMouseX / Y function to tell the position
relative to the upper left corner of a gadget,
I know it can be done with simple API funtions on Windows,
but it would be nice to have a cross platform funtion build in ...
- Fri Dec 19, 2008 6:49 am
- Forum: Feature Requests and Wishlists
- Topic: Having uninitilaized Protected variables
- Replies: 2
- Views: 945
- Thu Dec 18, 2008 9:03 pm
- Forum: Feature Requests and Wishlists
- Topic: Having uninitilaized Protected variables
- Replies: 2
- Views: 945
Having uninitilaized Protected variables
Having the possiblity to have Protected variables in Procedures that are not initialized to zero,
would speed up Procedure calls a lot if you have many variables in it, that are set to other values than zero anyway.
Only exception would be strings, which pointer have to be set to zero
for the ...
would speed up Procedure calls a lot if you have many variables in it, that are set to other values than zero anyway.
Only exception would be strings, which pointer have to be set to zero
for the ...