News:

Masm32 SDK description, downloads and other helpful links
Message to All Guests
NB: Posting URL's See here: Posted URL Change

Main Menu

Recent posts

#1
The Orphanage / Re: Ramblings...
Last post by daydreamer - Today at 02:40:37 PM
Ascii system has a bit that changes if a letter is capital or not
Having downloaded unicode kanji pdf and learning kanji, wonder if there is some similar system in organising those?
Kanji for tree, is doubled for small group of tree and tripled for forest, any bits used to keep count?
Another way is to combine two simple kanji together to more complex kanji, different bytes in the unicode is code for the different kanji?
#2
The Workshop / Re: Vulkan Triangle in MASM64 ...
Last post by daydreamer - Today at 02:22:22 PM
Quote from: IbrahimElHindawi on June 14, 2025, 04:33:08 PM
Quote from: daydreamer on June 08, 2025, 05:45:38 PMGood luck with 64 bit 3d engine  :thumbsup:
But I prefer use 128 bit SSE /SSE2


i will use all the simd stuff at some point
I have somewhere SSE packed 2d rotation code,rotating 2 points simultaneously
For me it's alternative to pixelshaders because I am most skilled in asm(25 years SSE experience) , but hopeless newbie in pixelshaders, to work with 4 ARGB float channels in pixels and you have fast sqrtps = packed 4x sqrt,Divps rcpps,which you don't have in integer mmx/SSE2 opcodes



#3
The Campus / Re: Question about the API SQL...
Last post by sinsi - Today at 08:24:28 AM
Works fine, congrats

Quote from: jj2007 on Today at 05:54:22 AMThe exe works but "can't connect to database"
I had to install the SQLite driver from http://www.ch-werner.de/sqliteodbc/
#4
The Campus / Re: Question about the API SQL...
Last post by jj2007 - Today at 05:54:22 AM
The exe works but "can't connect to database"
#5
The Campus / Re: Question about the API SQL...
Last post by Rem - Today at 04:31:05 AM
Hello team

Finally it work...

When I use SQLiteStudio, to search the First name in the database.
The query is:
Select * from Main Where FirstName='Bob';

Without the Single quote it didn't work...

I just have a basic knowledge of SQL queries.

I thought that was the way to write SQLIte queries, so I put single quote.
szWhereClause   db  " WHERE FIRSTNAME='?'",0

In my project, I was able to run successfully the query
"SELECT * FROM MAIN WHERE FIRSTNAME='Bob'

Turn out that we don't need the single quote in the query for the API SQLBindParameter and SQLPrepare
szWhereClause   db  " WHERE FIRSTNAME=?",0

Please see attached final project.
#6
RadAsm IDE Support / RadSTM32 Update 2
Last post by KetilO - Today at 03:06:50 AM
RadASM update

Version 3.0.1.3 2025-06-14
--------------------------
o Fixed bug where pressing enter on first line
  caused RadASM to terminate.
o Fixed bug where pressing "," did not work.
o Fixed bugs in the STM32 code parser.
o When creating a new STM32 project you can
  now import files from a CubeMX project.
o Deleting minor files after a successful STM32
  build now works (*.d, *.o, *.ld and *.elf).
  Check the [Delete Minor Files After Successful Build]
  checkbox in Project / Project Options.

Download:
https://sourceforge.net/projects/radasm30/files/RadSTM32/RadSTM32_Update2/RadASM_Update2.zip/download

Unzip to empty folder and copy RadASM.exe to C:\RadSTM32

Ketilo
#7
ObjAsm / Re: New Editor
Last post by Biterider - June 14, 2025, 05:08:38 PM
Hi
While reading the news this morning, I came across MCP. It's fascinating to see how AI (LLMs) is evolving.
In the case of MCP, the aim is to enable LLMs to interact more effectively with the outside world.
I could imagine the potential of using an LLM to control the ADE editor, i.e. refactoring my code directly in place. The concept looks very appealing.
The basic concept looks like can be seen in the attached jpg.

Side note: for back-end communication, it uses JSON-RPC!

For those to want to read more, here the link https://modelcontextprotocol.io/introduction

Biterider
#8
The Workshop / Re: Vulkan Triangle in MASM64 ...
Last post by IbrahimElHindawi - June 14, 2025, 04:33:08 PM
Quote from: daydreamer on June 08, 2025, 05:45:38 PMGood luck with 64 bit 3d engine  :thumbsup:
But I prefer use 128 bit SSE /SSE2


i will use all the simd stuff at some point
#9
PowerBASIC / Re: Bitmap Rotation functions ...
Last post by jj2007 - June 14, 2025, 07:39:51 AM
Quote from: NoCforMe on June 14, 2025, 04:43:21 AMnot many of us speak BASIC here

Some do, and Hutch, the founder of this forum, was a PowerBasic fan.

However, posting small routines will trigger more and better reactions. PowerBasic is ok in this sub-forum, but keep it very, very simple and add lots of comments. We are good at doubling the speed of an innermost loop, but we insist to do it in Assembly ;-)
#10
PowerBASIC / Re: Bitmap Rotation functions ...
Last post by NoCforMe - June 14, 2025, 04:43:21 AM
Yes, not many of us speak BASIC here. Please post some assembly-language code.