If you have the Microsoft C compiler, you can use
link.exe. If you don’t, you can download the Windows 7 SDK, which provides the C compiler and linker.
link HelloWorld.obj /OUT:HelloWorld.exe /SUBSYSTEM:CONSOLE /ENTRY:start
If you download
MinGW, it provides
ld.exe which can also be used to do the linking.
ld -o HelloWorld.exe HelloWorld.obj -entry=start --subsystem=console
Most of the assembly books I know of are for Linux, not Windows. Do you have access to a Linux machine or VM?