News:

Download Pelles C here: http://www.smorgasbordet.com/pellesc/

Main Menu

Recent posts

#11
Bug reports / Re: Issue with symbol defined ...
Last post by Vortex - Yesterday at 09:06:56 PM
Hi Pelle,

No worries. Take your time. Thanks for your efforts, it's a huge job to maintain all the toolset.
#12
Bug reports / Re: Issue with symbol defined ...
Last post by Pelle - Yesterday at 08:57:00 PM
The .echo directive display expression(s). Since the internal expression format is totally different in this version, the output is expected (in general) to be a bit different from before.
I'm not convinced this is a bug, but I need some more time to look at it...
#13
Announcements / Re: Release Candidate for vers...
Last post by Pelle - Yesterday at 08:46:09 PM
Quote from: MrBcx on Yesterday at 04:37:01 PMConfirmed:
C:\PellesC\Include\Win\winbase.h(23): fatal error #1035: Can't find #include file <fileapifromapp.h>.
"...so you wanted <fileapifromapp.h> to be included in the Setup? Why didn't you say so...?"

Now in Release Candidate #2 (from the same place) ...
#14
Announcements / Re: Release Candidate for vers...
Last post by Pelle - Yesterday at 08:39:41 PM
Quote from: MrBcx on Yesterday at 04:26:01 PMVery happy to learn that you're alive and (presumably) well and still interested in this project that you started 20+ years ago.
Our cohort grows smaller each year but our friends have come to rely on us being there for them.
Cool, thanks.
My interest has certainly gone down a bit in recent years. I wanted to finish the C23 version, since I hate leaving projects unfinished, but it's hard to be interested in "C2Y" (the next C standard). We don't even have much of "Wintel" anymore, so I'm not sure where to focus now...
#15
Announcements / Re: Release Candidate for vers...
Last post by Pelle - Yesterday at 08:24:55 PM
Quote from: TimoVJL on Yesterday at 02:34:55 PMThanks
Thank you.

Quote from: TimoVJL on Yesterday at 02:34:55 PMWhat features we should to test first ?
Well... apparently the Windows API include files! They are all new...
Otherwise I don't really know. Rebuilding all tools with the most recent tools tend to reveal all major/obvious bugs. It's the lesser used features that needs testing, I guess...
#16
Assembly discussions / Re: Saving a bitmap from handl...
Last post by Vortex - Yesterday at 08:23:07 PM
Hi Pelle,

Testing Poasm V13 with the source files in the attachment, I receive the following error messages :

E:\PellesC\sample>\PellesC\bin\poasm /AAMD64 SaveBmpFromHandle.asm
E:\PellesC\sample\SaveBmpFromHandle.asm(9): error: Must be a constant integer expression.
E:\PellesC\sample\SaveBmpFromHandle.asm(37): error: Invalid use of ','.
E:\PellesC\sample\SaveBmpFromHandle.asm(37): error: Invalid use of ','.
E:\PellesC\sample\SaveBmpFromHandle.inc(242): fatal error: Invalid use of ')'.

E:\PellesC\sample>\PellesC\bin\poasm /AAMD64 Demo.asm
E:\PellesC\sample\Demo.asm(20): error: Must be a constant integer expression.
E:\PellesC\sample\Demo.asm(26): error: Stack parameter area can only hold 0 entries: increase value of PARMAREA.
E:\PellesC\sample\Demo.asm(26): error: Stack parameter area can only hold 0 entries: increase value of PARMAREA.

E:\PellesC\sample>\PellesC\bin\poasm /AAMD64 WriteFileToDisc.asm
E:\PellesC\sample\WriteFileToDisc.asm(13): error: Must be a constant integer expression.
E:\PellesC\sample\WriteFileToDisc.asm(26): error: Stack parameter area can only hold 0 entries: increase value of PARMAREA.
E:\PellesC\sample\WriteFileToDisc.asm(26): error: Stack parameter area can onlyhold 0 entries: increase value of PARMAREA.
E:\PellesC\sample\WriteFileToDisc.asm(26): error: Stack parameter area can onlyhold 0 entries: increase value of PARMAREA.
E:\PellesC\sample\WriteFileToDisc.asm(37): error: Stack parameter area can onlyhold 0 entries: increase value of PARMAREA.

Poasm V12.00.1 assembles the same code without any issues.
#17
Bug reports / Re: Issue with symbol defined ...
Last post by Vortex - Yesterday at 08:01:44 PM
Hi Pelle,

Testing Poasm Version 13.00.0 :

.386
.model flat,stdcall
option casemap:none

ExitProcess PROTO :DWORD
printf PROTO C :DWORD,:VARARG

includelib  \PellesC\lib\Win\kernel32.lib
includelib  msvcrt.lib

level=1

@CatStr(Sample,level) CATSTR test,level

.echo @CatStr(Sample,level)

.echo Sample1

.data

string db 'Hello world!'

 
.code

start:

    invoke  ExitProcess,0

END start

The output of the .echo statements :

<Sample1>
<test1>

Preserving the symbols < and > like in the original code :

.
.
level=1

@CatStr(<Sample>,level) CATSTR <test>,level

.echo @CatStr(<Sample>,level)

.echo Sample1
.
.

The output :

<Sample1>
<test1>

The issue is solved here but assembler should not insert the symbols < and >

The correct reading should be :

Sample1
test1
#18
Announcements / Re: Release Candidate for vers...
Last post by Marco - Yesterday at 07:51:16 PM
Hi Pelle!

I share the happiness of other users. Very good to hear from you again!

Thank you for this new version. I will be testing it soon.

Marco
#19
Announcements / Re: Release Candidate for vers...
Last post by Cbeginner - Yesterday at 07:09:17 PM
Happy Times  ;D

Glad to hear from you Pelle and that V13 candidate is here.
I will download and start testing
#20
Feature requests / Help file suggestion
Last post by Quin - Yesterday at 05:34:11 PM
Hi,
Would it be possible to turn the ANSI/ASCII tables in the CHM help file into actual proper HTML tables? i.e. <table>...</table>. Currently with the way they're laid out, they're out-of-order and it's nearly impossible for a screen reader user like myself to utilize them.
Also, I found a tiny typo in the help, I think it's probably just worth putting it here: In the PoFMT command line options, there's an extra r before the description of /o:
Quote/O
rSpecifies the name of the output file.
Thanks!