Subversion Repositories Kolibri OS

Rev

Blame | Last modification | View Log | RSS feed

  1. /*
  2.  * Dummy kernel
  3.  * Copyright © <2010>, Intel Corporation.
  4.  *
  5.  * This program is licensed under the terms and conditions of the
  6.  * Eclipse Public License (EPL), version 1.0.  The full text of the EPL is at
  7.  * http://www.opensource.org/licenses/eclipse-1.0.php.
  8.  *
  9.  */
  10. // Kernel name: DCResetDummy.asm
  11. //
  12. // Dummy kernel used by driver for debug-counter reset SW WA
  13. //
  14.  
  15. // ----------------------------------------------------
  16. //  Main: DCResetDummy
  17. // ----------------------------------------------------
  18.  
  19. .kernel DCResetDummy
  20. DCRESETDUMMY:
  21.  
  22. #include "header.inc"
  23.  
  24. .code
  25.  
  26. // Terminate the thread
  27. //
  28.     END_THREAD
  29.  
  30. #if !defined(COMBINED_KERNEL)           // For standalone kernel only
  31. .end_code
  32.  
  33. .end_kernel
  34. #endif  // !defined(COMBINED_KERNEL)
  35.