Subversion Repositories Kolibri OS

Rev

Blame | Last modification | View Log | Download | RSS feed

  1. /***************************************************************************************************
  2.  *  Copyright (C) Vasiliy Kosenko (vkos), 2009                                                     *
  3.  *  Kobra is free software: you can redistribute it and/or modify it under the terms of the GNU    *
  4.  *  General Public License as published by the Free Software Foundation, either version 3          *
  5.  *  of the License, or (at your option) any later version.                                         *
  6.  *                                                                                                 *
  7.  *  Kobra is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without     *
  8.  *  even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU  *
  9.  *  General Public License for more details.                                                       *
  10.  *                                                                                                 *
  11.  *  You should have received a copy of the GNU General Public License along with Kobra.            *
  12.  *  If not, see <http://www.gnu.org/licenses/>.                                                    *
  13.  ***************************************************************************************************/
  14.  
  15. .global start, entry
  16. .extern main
  17.  
  18. Start:
  19.  
  20. .byte 'M', 'E', 'N', 'U', 'E', 'T', '0', '1'
  21. .long 0x1
  22. .long begin
  23. .long end
  24. .long end+0x4000
  25. .long end+0x4000
  26. .long 0
  27. .long 0
  28.  
  29. begin:
  30.         call main
  31.