2003-06-27 10:21 UTC+0100

This commit is contained in:
Antonio Linares
2003-06-27 08:25:54 +00:00
parent c441e84e2a
commit 57e3e41a36

View File

@@ -8,6 +8,28 @@
2002-12-01 23:12 UTC+0100 Foo Bar <foo.bar@foobar.org>
*/
2003-06-27 10:21 UTC+0100 Antonio Linares <alinares@fivetechsoft.com>
* source/compiler/gencli.c
! .NET IL implementation for HB_P_POPLOCALNEAR and HB_P_PUSHLOCALNEAR
Notice: These opcodes are resposable for loading the values on the locals and
also for pushing their contents onto the virtual machine stack.
You can already run tests like this:
function Main()
local c := "Hello world from Harbour.NET !"
? c
return nil
Remember the process to build a .NET app:
Harbour.exe -gi -n hello.prg --> hello.il
ilasm.exe hello.il --> hello.exe (for .NET)
2003-06-27 09:13 UTC+0100 Antonio Linares <alinares@fivetechsoft.com>
* source/compiler/gencli.c
! .NET IL implementation for HB_P_FRAME