0

First i want to tell you that i now i only use notepad++ for assembly language. and i have made assembly my default language by reading this here so when i open new file it highlight as assembly now its possible when i open new file it open with some code?? as when i open new file it open with

.model small
.stack 100H
.data
.code
 main proc


 main endp
 end main

Thanks in advance :)

1 Answers1

0

Notepad++ seems hasn't support for new files with a content. Try SynWrite editor, also free. You can put Asm file to template\newdoc subfolder and call File>New menu with it. (See help topic about new file template)

RProgram
  • 568