Creates a new directory having the given name.
mov ax, 7139h ; Make Directory
mov dx, seg Name ; see below
mov ds, dx
mov dx, offset Name
int 21h
jc error
Clears the carry flag if successful. Otherwise, the function sets the carry flag and sets the AX register to an error value.