Board index » delphi » eax with 16-bit Borland C++ 3.1
Ed Mulroy \(TeamB\)
![]() Delphi Developer |
Sun, 15 Feb 2004 02:46:38 GMT
eax with 16-bit Borland C++ 3.1
I am not sure of how well an inline assembly instruction is going to work in
a macro. If you wrote the instruction inline you probably could use an instruction #include "DOS.H" Your example declares 'time', 'time_low' and 'time_high' as unsigned, the -time is already the name of a function. You should use a different name. This is something like I would try: #include "DOS.H" asm db 0x66 /* same as __emit__(0x66); */ Borland C++ 3.1 is ancient, 1992, and has no 32 bit abilities. Expect a . Ed |