Ignore:
Timestamp:
Jul 10, 2022, 12:37:58 AM (23 months ago)
Author:
chronos
Message:
  • Added: Interrupt handling.
Location:
branches/UltimatOS
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/UltimatOS

    • Property svn:ignore
      •  

        old new  
        22UltimatOS.lps
        33UltimatOS.res
         4UltimatOS.dbg
        45lib
  • branches/UltimatOS/Graphics.asm

    r31 r32  
    1414  PUSH R0
    1515  PUSH R1
    16 Start:
     16RectangleStart:
    1717  COPY R0, R8
    1818  COPY R1, R9
    1919  CALL SetPixelAddr 
    2020  COPY R5, R3
    21 Line:
     21RectangleLine:
    2222  OUT  (ScreenWriteData), R7
    2323  DEC  R5
    24   JPNZ R5, Line
     24  JPNZ R5, RectangleLine
    2525  DEC  R6
    2626  INC  R9
    27   JPNZ R6, Start
     27  JPNZ R6, RectangleStart
    2828  POP  R1
    2929  POP  R0
Note: See TracChangeset for help on using the changeset viewer.