Subversion Repositories Kolibri OS

Rev

Rev 2010 | Rev 2130 | Go to most recent revision | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 2010 Rev 2049
Line 3... Line 3...
3
;; Copyright (C) KolibriOS team 2004-2009. All rights reserved. ;;
3
;; Copyright (C) KolibriOS team 2004-2009. All rights reserved. ;;
4
;; Distributed under terms of the GNU General Public License    ;;
4
;; Distributed under terms of the GNU General Public License    ;;
5
;;                                                              ;;
5
;;                                                              ;;
6
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
6
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
Line 7... Line 7...
7
 
7
 
Line 8... Line 8...
8
$Revision: 2010 $
8
$Revision: 2049 $
9
 
9
 
10
 
10
 
Line 769... Line 769...
769
end virtual
769
end virtual
Line 770... Line 770...
770
 
770
 
771
virtual at 0
771
virtual at 0
772
  CSYM COFF_SYM
772
  CSYM COFF_SYM
-
 
773
end virtual
-
 
774
 
-
 
775
struc LHEAD
-
 
776
{
-
 
777
   .next            dd ?   ;next object in list
-
 
778
   .prev            dd ?   ;prev object in list
-
 
779
   .sizeof:
-
 
780
}
-
 
781
 
-
 
782
virtual at 0
-
 
783
  LHEAD LHEAD
-
 
784
end virtual
-
 
785
 
-
 
786
struc IRQH
-
 
787
{
-
 
788
   .list            LHEAD
-
 
789
   .handler         dd ?   ;handler roututine
-
 
790
   .data            dd ?   ;user-specific data
-
 
791
   .sizeof:
-
 
792
}
-
 
793
 
-
 
794
virtual at 0
-
 
795
  IRQH IRQH
-
 
796
end virtual