| OLD | NEW |
| 1 /* | 1 /* |
| 2 * GRUB -- GRand Unified Bootloader | 2 * GRUB -- GRand Unified Bootloader |
| 3 * Copyright (C) 2009 Free Software Foundation, Inc. | 3 * Copyright (C) 2009 Free Software Foundation, Inc. |
| 4 * | 4 * |
| 5 * GRUB is free software: you can redistribute it and/or modify | 5 * GRUB is free software: you can redistribute it and/or modify |
| 6 * it under the terms of the GNU General Public License as published by | 6 * it under the terms of the GNU General Public License as published by |
| 7 * the Free Software Foundation, either version 3 of the License, or | 7 * the Free Software Foundation, either version 3 of the License, or |
| 8 * (at your option) any later version. | 8 * (at your option) any later version. |
| 9 * | 9 * |
| 10 * GRUB is distributed in the hope that it will be useful, | 10 * GRUB is distributed in the hope that it will be useful, |
| (...skipping 92 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 103 .word 0 | 103 .word 0 |
| 104 idtaddr: | 104 idtaddr: |
| 105 .quad 0 | 105 .quad 0 |
| 106 | 106 |
| 107 .p2align 4 | 107 .p2align 4 |
| 108 jump_vector: | 108 jump_vector: |
| 109 /* Jump location. Is filled by the code */ | 109 /* Jump location. Is filled by the code */ |
| 110 .long 0 | 110 .long 0 |
| 111 .long 0x10 | 111 .long 0x10 |
| 112 | 112 |
| OLD | NEW |