hello all,
i am a student learning X86 Assembly language. now a days i am planning to develope few networking protocals and device drivers using ALP(Assembly Language Programming). how shall i do so?. r there any tutorials available in net?.
Another problem i have is at present i am using Masm 6.11 assembler. There i had used the following code
.model large
.data
; .
; . some data here
.code
start: mov ax,
@data mov ds,ax
; and some part of code
end start
end
In this mode of programming how shall i define more than one code and data segments?.
Thanking u all.