Browse Source

feat: passage au format CE, offset a 0

feature/test
Nicolas Hordé 20 years ago
parent
commit
42725ead9a
  1. 2
      noyau/8259a.asm
  2. 2
      noyau/clavier.asm
  3. 2
      noyau/format.asm
  4. 2
      noyau/heure.asm
  5. 2
      noyau/horloge.asm
  6. 2
      noyau/manette.asm
  7. 2
      noyau/port.asm
  8. 2
      noyau/souris.asm
  9. 2
      programs/detect.asm
  10. 2
      programs/editeur.asm
  11. 2
      programs/logo.asm
  12. 2
      programs/memoire.asm
  13. 2
      programs/pmode.asm
  14. 2
      programs/souris.asm
  15. 2
      programs/test.asm
  16. 2
      programs/verifier.asm
  17. 2
      programs/volume.asm

2
noyau/8259a.asm

@ -2,7 +2,7 @@
.486
smart
.code
org 0100h
org 0h
start:
jmp tsr
db 'PIC8259A'

2
noyau/clavier.asm

@ -3,7 +3,7 @@
smart
.code
org 0100h
org 0h
start:

2
noyau/format.asm

@ -3,7 +3,7 @@
smart
.code
org 0100h
org 0h
start:
jmp tsr ;Saute à la routine résidente

2
noyau/heure.asm

@ -3,7 +3,7 @@
smart
.code
org 0100h
org 0h
start:

2
noyau/horloge.asm

@ -3,7 +3,7 @@
smart
.code
org 0100h
org 0h
start:

2
noyau/manette.asm

@ -2,7 +2,7 @@
.486
smart
.code
org 0100h
org 0h
start:
jmp tsr
drv db 'JOYSTICK',0

2
noyau/port.asm

@ -2,7 +2,7 @@
.486
smart
.code
org 0100h
org 0h
start:
jmp tsr
drv db 'LPT ',0

2
noyau/souris.asm

@ -2,7 +2,7 @@
.486
smart
.code
org 0100h
org 0h
start:
jmp tsr
drv db 'MOUSE',0

2
programs/detect.asm

@ -3,7 +3,7 @@
smart
.code
org 0100h
org 0h
include ..\include\pci.h

2
programs/editeur.asm

@ -1,7 +1,7 @@
.model tiny
.386c
.code
org 0100h
org 0h
start:

2
programs/logo.asm

@ -1,7 +1,7 @@
.model tiny
.386c
.code
org 0100h
org 0h
start:

2
programs/memoire.asm

@ -3,7 +3,7 @@
smart
.code
org 0100h
org 0h
include ..\include\mem.h
include ..\include\divers.h

2
programs/pmode.asm

@ -3,7 +3,7 @@
smart
.code
org 0100h
org 0h
start:
mov eax,cr0

2
programs/souris.asm

@ -3,7 +3,7 @@
smart
.code
org 0100h
org 0h
start:
mov si,offset message

2
programs/test.asm

@ -2,7 +2,7 @@
.486
smart
.code
org 0100h
org 0h
start:

2
programs/verifier.asm

@ -1,7 +1,7 @@
.model tiny
.386c
.code
org 0100h
org 0h
start:

2
programs/volume.asm

@ -1,7 +1,7 @@
.model tiny
.386c
.code
org 0100h
org 0h
start:

Loading…
Cancel
Save