[Mono-bugs] [Bug 26364][Wis] Changed - mcs generated assemblies still do not work on .net
bugzilla-daemon@rocky.ximian.com
bugzilla-daemon@rocky.ximian.com
19 Jun 2002 16:42:18 -0000
Please do not reply to this email- if you want to comment on the bug, go to the
URL shown below and enter your comments there.
Changed by lupus@ximian.com.
http://bugzilla.ximian.com/show_bug.cgi?id=26364
--- shadow/26364 Tue Jun 18 05:23:34 2002
+++ shadow/26364.tmp.13857 Wed Jun 19 12:42:18 2002
@@ -63,6 +63,13 @@
using the mcs-compiled "hello world" i emailed to Paolo the other day.
This sequence (ff 25 00 20) is the first 4 bytes of the .text section,
according to objdump.
+
+------- Additional Comments From lupus@ximian.com 2002-06-19 12:42 -------
+The entry point RVA points at the start of the .text section where I
+put the code that starts the program. ff 25 is a jump instruction.
+After that you'll find the address to jump to:
+402000: ff 25 00 20 40 00 jmp *0x402000
+the address will be patched by the loader to point to _CorExeMain().