News:

MASM32 SDK Description, downloads and other helpful links
MASM32.com New Forum Link
masmforum WebSite

Download the GeneSys project

Started by Vortex, March 06, 2008, 08:40:30 PM

Previous topic - Next topic

Vortex

Hi friends,

Here is where you can get the installation package of the GeneSys project :

http://www.ghirai.com/PBrennick/

http://pbrennick.freehosting.net/

Kernel

Phew, I thought everybody left the building.
Thanks a bunch !! A must-have  :U

/EDIT
It is golden..  :eek

Vortex

Hi Kernel,

You are welcome.

Please feel free to post here if you have questions concerning the GeneSys project.

jj2007

Cute, absolutely cute! How does the example "without invoke" work?

Rainstorm


Vortex

Hello jj2007,

The Editbox example calls all the API functions without invoke. Let me explain with an example :
SetTimer,hWnd,ID_TIMER,150,0

SetTimer is an equate, it defines a sequence of asm instructions :

EXTERNDEF SetTimer@16:PROC
SetTimer EQU <invoke pr4 PTR SetTimer@16>


pr4 is defined in windows.inc. This is a macro technique created by Hutch to call external functions :

.
.
.
    ArgCount MACRO number
      LOCAL txt
      txt equ <typedef PROTO :DWORD>
        REPEAT number - 1
          txt CATSTR txt,<,:DWORD>
        ENDM
      EXITM <txt>
    ENDM

    pr0  typedef PROTO
    pr1  ArgCount(1)
    pr2  ArgCount(2)
    pr3  ArgCount(3)
    pr4  ArgCount(4)
.
.
.


Vortex

Here is another link where you can download the project :

http://ghirai.com/PBrennick/GeneSys.zip

Many thanks Ghirai :U

herge


Hi Vortex:

I have just downloaded GeneSys.

My virius scaner AVG is telling me it don't like. [ resident Shield Alert]

C:\GeneSys\examples\Extractor\Extractor.exe

Trojan horse Dropper Small FG detected on open

Process Name C:\windows\system32\cidamon.exe

I am not sure if it is a false positive or it is
really bad news.

Yours Truly herge
// Herge born  Brussels, Belgium May 22, 1907
// Died March 3, 1983
// Cartoonist of Tintin and Snowy

Vortex

#8
Herge,

That's a false positive and this had been discussed in another thread.

Vortex

First posting modified to reflect the correct download links.

frktons

Quote from: Vortex on March 06, 2008, 08:40:30 PM
Hi friends,

Here is where you can get the installation package of the GeneSys project :

http://www.ghirai.com/PBrennick/

http://pbrennick.freehosting.net/

The first link looks like vanished.  ::)
The second one is working  :P
Mind is like a parachute. You know what to do in order to use it :-)

dedndave

Ghirai must have his site under development
but, at least you can play sudoku   :U

frktons

Quote from: dedndave on May 15, 2010, 01:08:04 PM
Ghirai must have his site under development
but, at least you can play sudoku   :U
:lol

Actually I downloaded and installed it, as time permits I'll have a look at it.  :P
Mind is like a parachute. You know what to do in order to use it :-)

frktons

The GeneSys project could be fine to start learning Assembly,
but after installing it I found a problem:

I can't visualize ASM code inside the editor properly.
The words appears doubled in two different colours,
the one chosen for foreground text, and a different color with a smaller size
text on it, and it is quite difficult/impossible to read them.

Any idea to overcome this displaying annoying effect ?

Edit:

after trying some customizations, I found it depends on syntax highlighting,
switching it off the problem is solved.  :P
I can't have syntax highlighting for the time being, but I can live without it for a while.  :bg


Frank
Mind is like a parachute. You know what to do in order to use it :-)