News:

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

Project GeneSys

Started by PBrennick, July 15, 2006, 03:21:38 PM

Previous topic - Next topic

smoker

hello i am a very new member of the forum and trying to learn something about MASM32 i hope it will be great and please how can i get the ....masm32/lib/"masm32.lib" to run the samples...

Vortex

Welcome on board.

The GeneSys package provides GeneSys.lib as run-time library. If you wish to use masm32.lib, you should have a copy of masm32.inc to build your code.

TomRiddle

Where is the information on adding code to the GeneSys project?  Like if someone wanted to include Macro's into it?

Thanks all

Would this be correct?

Title "16-Bit Low Level IDE Disk Power Management"

This command directly Out's to the Select Disk (0=A(Floppy), 1=B(Floppy)...128 = C(Hard Disk 0), 129=D(Hard Disk 1).  This command has no error checking, and may not work for all BIOS's

; -=- Power Managment -=-
StandBy Equ 0E0h      ;Mostly Asleep
Idle Equ 0E1h         ;Some Asleep
TimedStandBy Equ 0E2h
TimedIdle Equ 0E3h
Sleep Equ 0E6h        ;Totally Asleep
Disk_Sleep Macro Drive, Command
  Mov Al, Drive
  Mov Dx, 01F7h
  Out Dx, Al
  Mov Al, Command
  Out Dx, 01F7h
EndM

japheth

Hi TomRiddle,

your macro is possibly not suited for GeneSys, which is mainly for programming Win32 "user" mode.

It fits into the DOS forum, however.

Regards

japheth

Vortex

Hi TomRiddle,

As Japheth said, GeneSys doesn't support 16-bit DOS coding but you can download the 16-bit MS linker to use with Masm 6.XX

TomRiddle

Aight, need a diffrent Project  :8)

Thanks all

korte

where to found genesys project page?

http://x86assembly.codegurus.org  not valid!

PBrennick

Sorry, the site is down. He switched to a windows server and it has been a nightmare ever since.

You can download the project from Ghirai's server. It is a reliable server.

I am looking for a new home for the repository.
Paul
The GeneSys Project is available from:
The Repository or My crappy website

PBrennick

The Repository has been moved to here. Sorry for the trouble and the delay.

Paul
The GeneSys Project is available from:
The Repository or My crappy website

jcarlock

Hi Paul,

The zapto dot org domain ... you need a place to host anything?

PBrennick

Sorry aqbout the late reply, I have been concentrating on editor issues whilst it is in beta, again.

As far as mirror hosting goes, the more the merrier. Please send me an email to pbrennick@juno.com.

Thank you for the help.
-- Paul
The GeneSys Project is available from:
The Repository or My crappy website

gabor

Hello Paul old friend! Good to see you around!  :bg
It's been almost year now since my last login and seeing a post from you was a nice surprise indeed.

Sorry for the offtopic post...

You all take care! Greets
Gábor

PBrennick

Gabor,
I hope to see you around a lot more often. You were working on a couple of big projects as I recall - howzit going? Or did you take a 'truye' holiday and pull the plug?

Be sure to DL the latest version tof the GeneSys SDK.

-- Paul
The GeneSys Project is available from:
The Repository or My crappy website

elegem

As this project doesn't really have a dedicated site, have you considered hosting it on sourceforge?

Vortex