[BACK]Return to locore.S CVS log [TXT][DIR] Up to [cvs.NetBSD.org] / src / sys / arch / i386 / i386

Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.

Diff for /src/sys/arch/i386/i386/locore.S between version 1.129 and 1.130

version 1.129, 2016/06/04 10:02:12 version 1.130, 2016/06/04 10:19:09
Line 627  no_NOX:
Line 627  no_NOX:
  * +------+--------+------+-----+--------+---------------------+-----------   * +------+--------+------+-----+--------+---------------------+-----------
  *                             (1)      (2)                   (3)   *                             (1)      (2)                   (3)
  *   *
  * -------+------------+   * -------+-------------+
  * TABLES | ISA IO MEM |   * TABLES | ISA I/O MEM |
  * -------+------------+   * -------+-------------+
  *       (4)   *       (4)
  *   *
  * PROC0 STK is obviously not linked as a page level. It just happens to be   * PROC0 STK is obviously not linked as a page level. It just happens to be
Line 753  no_NOX:
Line 753  no_NOX:
         orl     $(PG_V|PG_KW),%eax          orl     $(PG_V|PG_KW),%eax
         fillkpt_nox          fillkpt_nox
   
         /* We are on (4). Map ISA I/O mem (later atdevbase) RWX. */          /* We are on (4). Map ISA I/O MEM RWX. */
         movl    $(IOM_BEGIN|PG_V|PG_KW/*|PG_N*/),%eax          movl    $IOM_BEGIN,%eax
         movl    $(IOM_SIZE>>PGSHIFT),%ecx          movl    $IOM_SIZE,%ecx  /* size of ISA I/O MEM */
           shrl    $PGSHIFT,%ecx
           orl     $(PG_V|PG_KW/*|PG_N*/),%eax
         fillkpt          fillkpt
   
         /*          /*

Legend:
Removed from v.1.129  
changed lines
  Added in v.1.130

CVSweb <webmaster@jp.NetBSD.org>