The syntax used by x86 assemblers differs slightly. So you have to read the corresponding manual.
To load an address into a register,
TASM uses the
OFFSET
keyword:
Borland Turbo Assembler User's Guide:
If you wish to refer to the offset of a symbol within a segment, you must explicitly use the OFFSET operator
mov ax, OFFSET Najmniejsza
The error "Unexpected end of file encountered" is probably sourced by the wrong
END
statement. It must be like
END Start
I recommend to get a copy of the
Borland Turbo Assembler User's Guide. It can be found in the web as PDF file.