전체 글48 [엑셀]매크로 ' 입력값을 두 배로 만들어 반환하는 사용자 정의 함수 (UDF) Function DoubleTheValue(inputValue As Variant) As Variant ' 입력값이 숫자인지 확인 If IsNumeric(inputValue) Then ' 숫자인 경우 2를 곱한 값을 반환 DoubleTheValue = CDbl(inputValue) * 2 Else ' 숫자가 아닌 경우, 오류 값(#VALUE!)을 반환 DoubleTheValue = CVErr(xlErrValue) End If End Function ' DoubleTheValue 함수를 사용하여 Sheet1의 A1, A2 셀 값을 처리하는 프로시저 Sub .. 2025. 6. 1. 윈도우 디버그 API를 사용하여 로깅하기 DLLvoid ProcessDebugEvent( DEBUG_EVENT& debugEvent) { switch (debugEvent.dwDebugEventCode) { case OUTPUT_DEBUG_STRING_EVENT: { OUTPUT_DEBUG_STRING_INFO& info = debugEvent.u.DebugString; char buffer[1024] = { 0 }; // 디버그 메시지를 읽기 위해 ReadProcessMemory 사용 if (info.fUnicode) { // 유니코드 문자열 처리 WCHAR wBuffer[512] = { 0 }; SIZE_T bytesRea.. 2025. 3. 20. 개요 https://vengineer.hatenablog.com/entry/2021/03/22/100000 XilinxのQEMU + SystemC + Verilog HDL (Verilator) のデモの内容を探っていく(その1) - Vengineerの戯言 @Vengineerの戯言 : Twitter SystemVerilogの世界へようこそ、すべては、SystemC v0.9公開から始まった はじめに このツイートから Xilinx の QEMU のソースコードを眺めることにしましたXilinxのQEMU環境、面 vengineer.hatenablog.com https://lsifrontend.hatenablog.com/entry/2022/08/19/143734 Macで Xilinx/systemctlm-cosim-demo動かす(その1) .. 2023. 5. 25. Boot-up Linux Kernel (u-boot, sd card) 1. root file-system buildroot를 이용하여 루트 파일시스템을 만든다. git clone https://github.com/buildroot/buildroot.git make zynq_zc706_defconfig make /output/target 의 내용을 sd-card에 복사할 것이다. 2. busybox busybox로 파일시스템 만든다. git clone https://github.com/mirror/busybox.git cd busybox export ARCH=arm64 export CROSS_COMPILE=arm-linux-gnueabihf- make defconfig config까지 완료되면 make menuconfig로 추가해야 할 설정이 있다. Settins-->Bui.. 2023. 5. 20. 이전 1 2 3 4 ··· 12 다음