How to access memory beyond 4GB (DOSX)
> Anyways, I actually tried building with TASM32 5.3, and annoyingly enough
> it bombs out with a bunch of errors. So much for compatibility. (Maybe
> there's a switch, but I dunno what.)
Use it with "-ml -m3" switches, and don't forget to define EXEC_TYPE (-dEXEC_TYPE=?).
EDIT: Peronally I used to build it the followings:
tasm -ml -m2 -dEXEC_TYPE=2 kernel
tasm -ml -m3 -dEXEC_TYPE=2 dos32a
tlink /3 dos32a kernel, dos32a
You can use instead Tlink any other linker supporting OMFs with 32-bit fixups and MZ output.
---
Glory to God for all things
Complete thread:
- How to access memory beyond 4GB - Clker, 30.06.2009, 06:37
- How to access memory beyond 4GB - Zyzzle, 30.06.2009, 23:24
- How to access memory beyond 4GB - Rugxulo, 01.07.2009, 22:24
- How to access memory beyond 4GB - Khusraw, 02.07.2009, 20:34
- How to access memory beyond 4GB - Khusraw, 05.07.2009, 15:17
- How to access memory beyond 4GB - Rugxulo, 05.07.2009, 21:16
- How to access memory beyond 4GB - Khusraw, 05.07.2009, 22:32
- How to access memory beyond 4GB - Rugxulo, 08.07.2009, 07:37
- How to access memory beyond 4GB - Khusraw, 05.07.2009, 22:32
- How to access memory beyond 4GB - Rugxulo, 05.07.2009, 21:16
- How to access memory beyond 4GB - Khusraw, 05.07.2009, 15:17
- How to access memory beyond 4GB - Zyzzle, 30.06.2009, 23:24