floating point i/o in x86 assembly | SCHIZONE EP-13

Поделиться
HTML-код
  • Опубликовано: 9 сен 2024
  • 13th video in a series on scientific computing from scratch using x86-64 assembly. This video describes I/O for floating point numbers.
    code: github.com/xmd...
    4 good resources:
    ascii table:
    www.rapidtable...
    x86 instruction reference:
    www.felixclout...
    linux/freebsd syscall concordance:
    www.lurklurk.o...
    old draft of System-V ABI:
    refspecs.linux...
    secret discord link:
    xmdi.us/misc/d...

Комментарии • 4

  • @YouchengLin-n5b
    @YouchengLin-n5b 26 дней назад

    Thanks for video!

  • @purplemossclump5505
    @purplemossclump5505 Год назад +1

    dangerously based

  • @darkexior
    @darkexior Год назад +3

    Sigma

  • @YouchengLin-n5b
    @YouchengLin-n5b 26 дней назад

    double d = 3.14;
    size_t count(double d) --> 2
    What would you suggest to count the decimals by wrting c code?
    Any advide is appreciated!