ASP.NET: ASM to IL compiler
;
http://www.viksoe.dk/code/asmil.htm
대단하군요. ^^;
ASP.NET 의 페이지 하나를 다음과 같은 식으로 프로그램 하는 것이 가능합니다.
<%@ page language="Asm80386" %>
<%
Str: DB "Testing...", 0
mov eax, -2
cmp eax, 2
jle Label1
xor eax, eax
Label1:
lea esi, Str
push esi
call "Response.Write(string)"
pop esi
%>
<br>EAX: <%= eax %>
[최초 등록일: ]
[최종 수정일: 10/31/2007]