[Freedos-user] Borland C++

2013-03-18 Thread Chris Evans
I just completed porting my mousetbx library to C from Pascal and I noticed that you can't have BASM labels in a _asm{} statement you have to exit the asm block to define the labels, The compiler I using is BC 3.1 I was wondering if BC4.5 handle BASM labels better ? I am try to find where I

Re: [Freedos-user] Borland C++

2013-03-18 Thread Louis Santillan
Not knowing what your asm does, is it not possible to port that block of code to C? Is the timing too intricate or something? -L On Monday, March 18, 2013, Chris Evans wrote: I just completed porting my mousetbx library to C from Pascal and I noticed that you can't have BASM labels in a

Re: [Freedos-user] Borland C++

2013-03-18 Thread Chris Evans
I ended up debugging it and have mouseinfo() working and it can detect clicks and which button was pressed. It is available on the http://nxdos.com/products.html webpage. --chris http://tawhakisoft.com/ http://digitalatol.com/

Re: [Freedos-user] Borland C++

2013-03-18 Thread Chris Evans
I prefer to do the majority of the interrupt work in basm, although i ended up in places using int86()/regs when needed. the code is communicating with a device driver (mouse) so I want the speed of asm for those portions of code. On 03/18/2013 04:26 PM, Louis Santillan wrote: Not knowing