Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.

1234567891011121314151617181920212223242526272829303132333435363738
  1. /*
  2. * Copyright (C) 2009 H. Peter Anvin <hpa@zytor.com>
  3. *
  4. * This program is free software; you can redistribute it and/or
  5. * modify it under the terms of the GNU General Public License
  6. * as published by the Free Software Foundation; either version 2
  7. * of the License, or (at your option) any later version.
  8. *
  9. * This program is distributed in the hope that it will be useful,
  10. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  12. * GNU General Public License for more details.
  13. *
  14. * You should have received a copy of the GNU General Public License
  15. * along with this program; if not, write to the Free Software
  16. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
  17. */
  18. FILE_LICENCE ( GPL2_OR_LATER )
  19. .text
  20. .arch i386
  21. .code16
  22. /****************************************************************************
  23. * Set/clear CF on the stack as appropriate, assumes stack is as it should
  24. * be immediately before IRET
  25. ****************************************************************************
  26. */
  27. .section ".text16", "ax", @progbits
  28. .globl patch_cf
  29. patch_cf:
  30. pushw %bp
  31. movw %sp, %bp
  32. setc 8(%bp) /* Set/reset CF; clears PF, AF, ZF, SF */
  33. popw %bp
  34. ret
  35. .size patch_cf, . - patch_cf