NO

Recent Posts

Pages: [1] 2 3 ... 10
1
Assembly discussions / Re: About PoAsm and bootloaders
« Last post by Vortex on Yesterday at 08:19:02 PM »
Hi pink,

Welcome to the Pelles C Forum. Poasm cannot create flat binary files and it does not support 16-bit coding.
2
General discussion / MIA: Pelle Orinius
« Last post by MrBcx on Yesterday at 06:02:59 PM »

The forum says it's been over a year since Pelle logged in.

Last Active:  October 23, 2023, 08:43:43 PM

Does anyone know what this portends?

3
Bug reports / Pelles Mode Dialog not deleting
« Last post by John Z on Yesterday at 03:46:00 PM »
After creating and using a new Mode created by Pelles "Project Modes" I tried to delete one of the modes I created.
The dialog box showed it deleted, but when I went back to the active mode selector in the main window the deleted mode was still select-able, and could be selected.  Then going back to the "Project Modes" dialog it showed the mode I tried to delete was still there.  Also inspection of the ppj file shows that the chosen mode was not deleted.

Only way to delete is to edit .ppj directly, something most will not want to do....

John Z
4
Assembly discussions / About PoAsm and bootloaders
« Last post by pink on Yesterday at 11:07:08 AM »
How can i make something like a bootsector? aka something thats just 512 bytes, nothing more!
have a great day :)
5
Windows questions / Re: Computing number of Pages to alloc usin VirtualAlloc
« Last post by HellOfMice on November 19, 2024, 09:38:43 AM »
Thank You


I will test


Philippe
6
Windows questions / Re: Computing number of Pages to alloc usin VirtualAlloc
« Last post by TimoVJL on November 19, 2024, 09:20:16 AM »
As Vortex hinted, this should tested:
Code: [Select]
#include <stdio.h>

int __cdecl main(void)
{
unsigned long dwSize = 3456;
unsigned long dwSize2;
for (dwSize = 4090; dwSize < 4100; dwSize++) {
dwSize2 = ((dwSize + 4095) & 0x0000F000);
printf("%d %d\n",dwSize, dwSize2);
}
for (dwSize = 0xFFF5; dwSize < 0x10005; dwSize++) {
dwSize2 = ((dwSize + 4095) & 0xFFFFF000);
printf("%d %d\n",dwSize, dwSize2);
}

return 0;
}
7
Windows questions / Re: Computing number of Pages to alloc usin VirtualAlloc
« Last post by HellOfMice on November 17, 2024, 01:44:12 PM »
Many words for doing what Timo does in one line
9
Windows questions / Re: Computing number of Pages to alloc usin VirtualAlloc
« Last post by HellOfMice on November 17, 2024, 09:49:23 AM »
Hello Timo.

What I use is your formula, the other one was just for the fun.
Here is a link that could interest you https://github.com/WojciechMula/toys
Now my program works well for its first part but I would like to improve avg, mean and stddev so I am searching SSE instruction to speed it up.

Thank you for your message.

Philippe
10
Windows questions / Re: Computing number of Pages to alloc usin VirtualAlloc
« Last post by HellOfMice on November 17, 2024, 09:47:46 AM »
Hello Timo.


What I use is your formula, the other one was just for the fun.


Here is a link that could interest you [size=78%]https://github.com/WojciechMula/toys[/size]


Now my program works well for its first part but I would like to improve avg, mean and stddev so I am searching SSE instruction to speed it up.


Thank you for your message.


Philippe
Pages: [1] 2 3 ... 10