HackerTrans
TopNewTrendsCommentsPastAskShowJobs

cryne

no profile record

comments

cryne
·w zeszłym roku·discuss
I tried to replicate this on my 64 bit machine, so

  nasm -f elf64 tiny.s && ld -s tiny.o

  ; tiny.asm
  BITS 64
  GLOBAL _start
  SECTION .text
  _start:
                mov     eax, 1
                mov     ebx, 42  
                int     0x80
and this lands me at 4320 bytes! Why is there such a stark difference?
cryne
·2 lata temu·discuss
re "successful game[s]", Bevy's quick start guide says: > If you are currently trying to pick an engine for your Next Big Project™, we recommend that you check out Godot Engine. https://bevyengine.org/learn/quick-start/introduction/