* docs/boot.S (ASM): Rename to ...
(ASM_FILE): ... this.
* docs/multiboot.h: Check for `ASM_FILE' instead of `ASM'.
* docs/multiboot.h (EXT_C, STACK_SIZE): Moved from here ...
* docs/boot.S (EXT_C, STACK_SIZE): ... to here.
+2009-12-24 Robert Millan <rmh.grub@aybabtu.com>
+
+ * docs/boot.S (ASM): Rename to ...
+ (ASM_FILE): ... this.
+ * docs/multiboot.h: Check for `ASM_FILE' instead of `ASM'.
+
+ * docs/multiboot.h (EXT_C, STACK_SIZE): Moved from here ...
+ * docs/boot.S (EXT_C, STACK_SIZE): ... to here.
+
2009-12-13 Vladimir Serbinenko <phcoder@gmail.com>
* docs/fdl.texi: Remove. It's not used.
along with this program; if not, write to the Free Software
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */
-#define ASM 1
+#define ASM_FILE 1
#include <multiboot.h>
+
+/* C symbol format. HAVE_ASM_USCORE is defined by configure. */
+#ifdef HAVE_ASM_USCORE
+# define EXT_C(sym) _ ## sym
+#else
+# define EXT_C(sym) sym
+#endif
+
+/* The size of our stack (16KB). */
+#define STACK_SIZE 0x4000
.text
/* The magic number passed by a Multiboot-compliant boot loader. */
#define MULTIBOOT_BOOTLOADER_MAGIC 0x2BADB002
-/* The size of our stack (16KB). */
-#define STACK_SIZE 0x4000
-
-/* C symbol format. HAVE_ASM_USCORE is defined by configure. */
-#ifdef HAVE_ASM_USCORE
-# define EXT_C(sym) _ ## sym
-#else
-# define EXT_C(sym) sym
-#endif
-
-#ifndef ASM
+#ifndef ASM_FILE
/* Do not include here in boot.S. */
/* Types. */
unsigned long type;
} memory_map_t;
-#endif /* ! ASM */
+#endif /* ! ASM_FILE */