Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/overhertz/domains/codeziron.com/public_html/ziron/ziron.db.connector.php on line 13
code:zIRON - Get the latest releases plus source-codes and tutorials - Simplifed Assembly Programming Language.
[255] high level expression - posted: 2011-11-01 19:30:48
hi ,
i want Ziron to support that , forget the optimization here Code:
function strLen(char* str)
{
uses Ebx Ecx;
Ebx = str;
Ecx = Ebx;
while(char[Ecx] != 0)
{
Ecx++;
}
int32 len = Ecx - Ebx; // hope this expression will be supported to make life more easy
return len;
}
[257] - posted: 2011-11-02 00:02:23i have been planning high level expressions for a long time, however they are very complex, since i want also to support ( and )...
e.g. eax = (ecx+edx)*edi;
but it may be some time before i get round to doing this since i want to first make sure everything else is working correctly before i put effort into this side of things. Download Ziron
Get free hosting for Ziron related fan-sites and Ziron projects, contact me in private message.
[261] - posted: 2011-11-02 12:18:58Thanks and thanks for your support and ideas Download Ziron
Get free hosting for Ziron related fan-sites and Ziron projects, contact me in private message.