From: GORDON ALLEN R Subject: assembly of mswitch.asm with MASM 5.0 To: djgpp AT sun DOT soe DOT clarkson DOT edu Date: Thu, 25 Jun 92 15:56:56 MDT I've been trying to regenerate go32 (v1.05) and am having trouble assmbling mswitch.asm with MASM 5.0. Do I need to get tasm or can it be done with masm? Basically, masm complains: mswitch.ASM(31): error A2003: Unknown type specifer mswitch.ASM(32): error A2003: Unknown type specifer mswitch.ASM(64): error A2003: Unknown type specifer . . . The lines referred to are: line 31: extrn _gdt:gdt_s line 32: extrn _idt:idt_s line 64: extrn _i_tss:tss_s where gdt_s, idt_s and tss_s are defined as STRUC in the appropriate .inc files. Thanks for any help.