The MASM Forum Archive 2004 to 2012

General Forums => The Campus => Topic started by: MaynardG_Krebs on February 15, 2007, 07:15:52 PM

Title: locate cursor
Post by: MaynardG_Krebs on February 15, 2007, 07:15:52 PM
What is the proper syntax for the locate function for the cursor in console mode?
I am using this command:
call locate x:40,y:12

but when I try to assemble the program I get a syntax error

Thanks
Title: Re: locate cursor
Post by: hutch-- on February 15, 2007, 07:20:26 PM

invoke locate,40,12
Title: Re: locate cursor
Post by: MaynardG_Krebs on February 16, 2007, 12:21:54 AM
Thanks Hutch!

That got my program working now.